mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
13 lines
163 B
Go
13 lines
163 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
AppName = "mayfly-go"
|
|
Version = "v1.2.12"
|
|
)
|
|
|
|
func GetAppInfo() string {
|
|
return fmt.Sprintf("[%s:%s]", AppName, Version)
|
|
}
|