Files
TaskPool/internal/constant/version.go
T
admin e6956aa001 Initial commit: TaskPool React panel
- React frontend with route-level code splitting
- Backend rebranded from Baihu to TaskPool
- DB brand migration script and local compatibility
2026-07-26 08:43:52 +08:00

13 lines
161 B
Go

package constant
import "time"
// 构建时注入的变量
var (
Version = "dev"
BuildTime = "unknown"
)
// 程序启动时间
var StartTime = time.Now()