implements Storage interface
| 37 | |
| 38 | // implements Storage interface |
| 39 | type SQLStorage struct { |
| 40 | Watcher |
| 41 | db *gorm.DB |
| 42 | sqlType string |
| 43 | connectionString string |
| 44 | } |
| 45 | |
| 46 | func NewSqlStorage(u *url.URL) *SQLStorage { |
| 47 | var connectionString string |
nothing calls this directly
no outgoing calls
no test coverage detected