aboutsummaryrefslogtreecommitdiff
path: root/pkg/ctime/ctime_unsupported.go
blob: afee56027a215aa1be029fb88d932c1a48dc7429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build !linux
// +build !linux

package ctime

import (
	"os"
	"time"
)

func created(fi os.FileInfo) time.Time {
	return fi.ModTime()
}