Этот коммит содержится в:
joey 2023-01-12 13:40:53 +08:00 коммит произвёл Ron Evans
родитель e11df5c212
коммит 776dabb2c8

10
src/os/file_posix.go Обычный файл
Просмотреть файл

@ -0,0 +1,10 @@
package os
import (
"time"
)
// Chtimes is a stub, not yet implemented
func Chtimes(name string, atime time.Time, mtime time.Time) error {
return ErrNotImplemented
}