PostgreSQLStore PostgreSQL 存储实现
| 14 | |
| 15 | // PostgreSQLStore PostgreSQL 存储实现 |
| 16 | type PostgreSQLStore struct { |
| 17 | db *sql.DB |
| 18 | tableName string |
| 19 | closed bool |
| 20 | } |
| 21 | |
| 22 | // PostgreSQLStoreConfig PostgreSQL 存储配置 |
| 23 | type PostgreSQLStoreConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected