forked from TrueCloudLab/frostfs-node
d8c3a0e4f5
Implement airport database based on csv OpenFlights table. Implement UN/LOCODE entry matcher. Implement country namespace. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
19 lines
298 B
Go
19 lines
298 B
Go
package airportsdb
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// Option sets an optional parameter of DB.
|
|
type Option func(*options)
|
|
|
|
type options struct {
|
|
airportMode, countryMode os.FileMode
|
|
}
|
|
|
|
func defaultOpts() *options {
|
|
return &options{
|
|
airportMode: os.ModePerm, // 0777
|
|
countryMode: os.ModePerm, // 0777
|
|
}
|
|
}
|