mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
11 lines
148 B
Go
11 lines
148 B
Go
package settings
|
|
|
|
type Database struct {
|
|
Name string
|
|
}
|
|
|
|
var DatabaseSettings = &Database{}
|
|
|
|
func (d *Database) GetName() string {
|
|
return d.Name
|
|
}
|