s3browser-backend/internal/db/db.go
2022-02-07 15:59:43 +01:00

10 lines
204 B
Go

package db
import "context"
type DB interface {
Setup() error
CheckLogin(ctx context.Context, username, password string) (bool, error)
AddUser(ctx context.Context, username, password string) error
}