George Bartolomey
840b20538b
Added frostfs-locode-db CLI utility that can generate and view UN/LOCODE database files. Go package git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/locode copied to this repository to eliminate interdependency between frostfs-node and frostfs-locode-db projects. The process of building database files reduced to starting make command. Signed-off-by: George Bartolomey <george@bh4.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
|
|
}
|
|
}
|