| 20 | ) |
| 21 | |
| 22 | type SQLiteDB struct { |
| 23 | db *dbs.DB |
| 24 | path string |
| 25 | |
| 26 | insertAgentIPStmt *dbs.Stmt |
| 27 | listAgentIPsStmt *dbs.Stmt |
| 28 | } |
| 29 | |
| 30 | func NewSQLiteDB(path string) *SQLiteDB { |
| 31 | var db = &SQLiteDB{path: path} |
nothing calls this directly
no outgoing calls
no test coverage detected