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