mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
17 lines
217 B
Go
17 lines
217 B
Go
package main
|
|
|
|
import (
|
|
db "go_database/database"
|
|
"path/filepath"
|
|
)
|
|
|
|
func main() {
|
|
db := db.NewDatabase(
|
|
filepath.Join(".", "suai.txt"),
|
|
filepath.Join(".", "unecon.txt"),
|
|
)
|
|
|
|
menu := NewMenu(db)
|
|
menu.Loop()
|
|
}
|