13 lines
183 B
Go
13 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
)
|
|
|
|
func TestXMain(t *testing.T) {
|
|
|
|
// Now you can use the generated GORM model to interact with the database
|
|
}
|