mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-09-26 19:31:18 +08:00
16 lines
217 B
Go
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,
|
|
}
|
|
}
|