mirror of
https://git.macaw.me/skunky/SkunkyArt.git
synced 2025-04-04 05:27:35 +03:00
темплейты в бинарнике и улучшенная система кеша
This commit is contained in:
parent
4db018fb7f
commit
1537da9b16
29 changed files with 555 additions and 303 deletions
13
app/stat-freebsd.go
Normal file
13
app/stat-freebsd.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
//go:build freebsd
|
||||
// +build freebsd
|
||||
|
||||
package app
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"time"
|
||||
)
|
||||
|
||||
func statTime(stat *syscall.Stat_t) int64 {
|
||||
return time.Unix(stat.Ctimespec.Unix()).UnixMilli()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue