bouncer/internal/datastore/sqlite/agent_repository.go
William Petit ac21629d28
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-02 23:15:50 +02:00

20 lines
296 B
Go

package sqlite
import (
"database/sql"
"forge.cadoles.com/cadoles/bouncer/internal/datastore"
)
type ProxyRepository struct {
db *sql.DB
}
func NewProxyRepository(db *sql.DB) *ProxyRepository {
return &ProxyRepository{
db: db,
}
}
var _ datastore.ProxyRepository = &ProxyRepository{}