github.com/benchkram/bob@v0.0.0-20240314204020-b7a57f2f9be9/pkg/store/filestore/options.go (about) 1 package filestore 2 3 type Option func(s *s) 4 5 func WithDir(dir string) Option { 6 return func(s *s) { 7 s.dir = dir 8 } 9 }