56d4410913
Changes: * replace `iotuil` elements with the ones from `os` package; * replace `os.Filemode` with `fs.FileMode`; * use `signal.NotifyContext` instead of `NewGracefulContext` (removed). Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
19 lines
301 B
Go
19 lines
301 B
Go
package airportsdb
|
|
|
|
import (
|
|
"io/fs"
|
|
)
|
|
|
|
// Option sets an optional parameter of DB.
|
|
type Option func(*options)
|
|
|
|
type options struct {
|
|
airportMode, countryMode fs.FileMode
|
|
}
|
|
|
|
func defaultOpts() *options {
|
|
return &options{
|
|
airportMode: fs.ModePerm, // 0777
|
|
countryMode: fs.ModePerm, // 0777
|
|
}
|
|
}
|