10 lines
204 B
Go
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
|
|
}
|