wheel_of_fortune/cmd/main.go
2025-02-18 20:31:09 +03:00

12 lines
140 B
Go

package main
import (
"fmt"
"wheel_of_fortune/internel/common"
)
func main() {
storage := common.ReadDB()
fmt.Printf("%v", storage)
}