2016-12-06 12:58:31 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-06 12:58:31 -05:00
|
|
|
|
2021-08-24 12:47:09 -04:00
|
|
|
//go:build bindata
|
|
|
|
|
2016-12-06 12:58:31 -05:00
|
|
|
package templates
|
|
|
|
|
|
|
|
import (
|
2022-01-06 21:33:17 -05:00
|
|
|
"time"
|
2016-12-06 12:58:31 -05:00
|
|
|
|
2023-04-12 06:16:45 -04:00
|
|
|
"code.gitea.io/gitea/modules/assetfs"
|
2022-01-06 21:33:17 -05:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2016-12-06 12:58:31 -05:00
|
|
|
)
|
|
|
|
|
2022-01-10 04:32:37 -05:00
|
|
|
// GlobalModTime provide a global mod time for embedded asset files
|
2022-01-06 21:33:17 -05:00
|
|
|
func GlobalModTime(filename string) time.Time {
|
|
|
|
return timeutil.GetExecutableModTime()
|
|
|
|
}
|
|
|
|
|
2023-04-12 06:16:45 -04:00
|
|
|
func BuiltinAssets() *assetfs.Layer {
|
|
|
|
return assetfs.Bindata("builtin(bindata)", Assets)
|
2020-02-01 21:17:44 -05:00
|
|
|
}
|