mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
13 lines
162 B
Go
13 lines
162 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
AppName = "mayfly-go"
|
|
Version = "v1.5.3"
|
|
)
|
|
|
|
func GetAppInfo() string {
|
|
return fmt.Sprintf("[%s:%s]", AppName, Version)
|
|
}
|