10 lines
161 B
Go
10 lines
161 B
Go
package main
|
|
|
|
type GoApiGenerator struct {
|
|
}
|
|
|
|
func (g *GoApiGenerator) Generate(api *Api, destFile string) error {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|