mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-06 22:52:25 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
13 lines
132 B
Go
13 lines
132 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package lumberjack
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func chown(_ string, _ os.FileInfo) error {
|
|
return nil
|
|
}
|