aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/api/handler.go
blob: c5df37503cf339054e60a9291b73008d74e25046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package api

import (
	"database/sql"

	"undef.ninja/x/feedaka/auth"
	"undef.ninja/x/feedaka/db"
)

type Handler struct {
	DB            *sql.DB
	Queries       *db.Queries
	SessionConfig *auth.SessionConfig
}

var _ StrictServerInterface = (*Handler)(nil)