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