12 lines
135 B
Go
12 lines
135 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"wheel_of_fortune/internel/common"
|
|
)
|
|
|
|
func main() {
|
|
storage := common.ReadDB()
|
|
fmt.Println(storage)
|
|
}
|