Created
July 15, 2024 18:38
-
-
Save BK1031/a64e1c3eded8b9f8614f91e82ca1f3da to your computer and use it in GitHub Desktop.
singlestore-go-bookstore initialize db from main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bookstore/database" | |
"fmt" | |
) | |
func main() { | |
fmt.Println("Hello, World!") | |
database.InitializeDB() // add this | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment