2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/internal/biz/database.go
2024-11-24 20:46:25 +08:00

14 lines
309 B
Go

package biz
import (
"github.com/TheTNB/panel/internal/http/request"
"github.com/TheTNB/panel/pkg/types"
)
type DatabaseRepo interface {
Count() (int64, error)
List(page, limit uint) ([]types.Database, int64, error)
Create(req *request.DatabaseCreate) error
Delete(serverID uint, name string) error
}