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