Files
ytdlp-site/handlers/footer.go
2024-10-17 05:45:30 -06:00

18 lines
297 B
Go

package handlers
import "ytdlp-site/config"
type Footer struct {
BuildDate string
BuildId string
BuildIdShort string
}
func MakeFooter() Footer {
return Footer{
BuildDate: config.GetBuildDate(),
BuildId: config.GetGitSHA(),
BuildIdShort: config.GetGitSHA()[0:7],
}
}