mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
32 lines
832 B
Go
32 lines
832 B
Go
package biz
|
|
|
|
import (
|
|
"github.com/tnb-labs/panel/internal/http/request"
|
|
)
|
|
|
|
type DatabaseType string
|
|
|
|
const (
|
|
DatabaseTypeMysql DatabaseType = "mysql"
|
|
DatabaseTypePostgresql DatabaseType = "postgresql"
|
|
DatabaseTypeMongoDB DatabaseType = "mongodb"
|
|
DatabaseSQLite DatabaseType = "sqlite"
|
|
DatabaseTypeRedis DatabaseType = "redis"
|
|
)
|
|
|
|
type Database struct {
|
|
Type DatabaseType `json:"type"`
|
|
Name string `json:"name"`
|
|
Server string `json:"server"`
|
|
ServerID uint `json:"server_id"`
|
|
Encoding string `json:"encoding"`
|
|
Comment string `json:"comment"`
|
|
}
|
|
|
|
type DatabaseRepo interface {
|
|
List(page, limit uint) ([]*Database, int64, error)
|
|
Create(req *request.DatabaseCreate) error
|
|
Delete(serverID uint, name string) error
|
|
Comment(req *request.DatabaseComment) error
|
|
}
|