17 lines
211 B
Go
Executable File
17 lines
211 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"backend/common/service/model"
|
|
|
|
"git.ipao.vip/rogeecn/atom"
|
|
)
|
|
|
|
func Test_GenModel(t *testing.T) {
|
|
err := atom.Serve(model.Options()...)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|