1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-06 06:33:31 +03:00
This commit is contained in:
mly 2024-05-14 09:07:32 +08:00 committed by GitHub
commit fc1b1e1f32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,25 +20,25 @@ type Options struct {
type Option func(*Options)
func UID(userID int) Option {
func WithUID(userID int) Option {
return func(args *Options) {
args.UID = userID
}
}
func GID(groupID int) Option {
func WithGID(groupID int) Option {
return func(args *Options) {
args.GID = groupID
}
}
func Contents(c string) Option {
func WithContents(c string) Option {
return func(args *Options) {
args.Contents = c
}
}
func Permissions(perms os.FileMode) Option {
func WithPermissions(perms os.FileMode) Option {
return func(args *Options) {
args.Permissions = perms
}
@ -87,7 +87,7 @@ if err != nil {
panic(err)
}
fillerFile, err := file.New("/tmp/file.txt", file.UID(1000), file.Contents("Lorem Ipsum Dolor Amet"))
fillerFile, err := file.New("/tmp/file.txt", file.WithUID(1000), file.WithContents("Lorem Ipsum Dolor Amet"))
if err != nil {
panic(err)
}