mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
13 lines
202 B
Go
13 lines
202 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
type App struct {
|
|
Name string `yaml:"name"`
|
|
Version string `yaml:"version"`
|
|
}
|
|
|
|
func (a *App) GetAppInfo() string {
|
|
return fmt.Sprintf("[%s:%s]", a.Name, a.Version)
|
|
}
|