blob: e2cbdb982dea9b2537288c632a5320e504391238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package main
import (
"airlines/pkg/localstore"
"fmt"
)
func main() {
loc := localstore.NewLocalStore()
loc.ImportAllCSVs("/tmp/ds")
fmt.Println(loc.FindCard("FF", 0, ""));
loc.Analytics()
}
|