build_date_data.go 504 B

123456789101112131415161718
  1. // Copyright 2025 BackendServerTemplate Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package builddate
  5. import (
  6. "fmt"
  7. "github.com/SongZihuan/BackendServerTemplate/tool/generate/basefile"
  8. "github.com/SongZihuan/BackendServerTemplate/tool/utils/fileutils"
  9. "time"
  10. )
  11. var buildTime = time.Now()
  12. func WriteBuildDateData() error {
  13. return fileutils.Write(basefile.FileBuildDateTxt, fmt.Sprint(buildTime.Unix()))
  14. }