InboundStore 实现 inbounds.InboundStore 接口。
| 13 | |
| 14 | // InboundStore 实现 inbounds.InboundStore 接口。 |
| 15 | type InboundStore struct { |
| 16 | db *pgxpool.Pool |
| 17 | } |
| 18 | |
| 19 | func (db *DB) InboundStore() *InboundStore { |
| 20 | return &InboundStore{db: db.conn} |
nothing calls this directly
no outgoing calls
no test coverage detected