Files
frp-panel/services/dao/query.go
VaalaCat f07c03ce68 feat: fx
2025-04-26 10:52:21 +00:00

16 lines
217 B
Go

package dao
import "github.com/VaalaCat/frp-panel/services/app"
type Query interface{}
type queryImpl struct {
ctx *app.Context
}
func NewQuery(ctx *app.Context) *queryImpl {
return &queryImpl{
ctx: ctx,
}
}