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