mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
12 lines
255 B
Go
12 lines
255 B
Go
package option
|
|
|
|
type ManagerServiceDatabase struct {
|
|
Driver string `json:"driver"`
|
|
DSN string `json:"dsn"`
|
|
}
|
|
|
|
type ManagerServiceOptions struct {
|
|
Inbounds []string `json:"inbounds"`
|
|
Database ManagerServiceDatabase `json:"database"`
|
|
}
|