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