mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 20:38:41 +08:00
ee19fb736b
* feature: refactor api parse to g4 * new g4 parser * add CHANGE_LOG.MD * refactor * fix byte bug * refactor * optimized * optimized * revert * update readme.md * update readme.md * update readme.md * update readme.md * remove no need * fix java gen * add upgrade * resolve confilits Co-authored-by: anqiansong <anqiansong@xiaoheiban.cn>
26 lines
360 B
Go
26 lines
360 B
Go
package spec
|
|
|
|
func (t PrimitiveType) Name() string {
|
|
return t.RawName
|
|
}
|
|
|
|
func (t DefineStruct) Name() string {
|
|
return t.RawName
|
|
}
|
|
|
|
func (t MapType) Name() string {
|
|
return t.RawName
|
|
}
|
|
|
|
func (t ArrayType) Name() string {
|
|
return t.RawName
|
|
}
|
|
|
|
func (t PointerType) Name() string {
|
|
return t.RawName
|
|
}
|
|
|
|
func (t InterfaceType) Name() string {
|
|
return t.RawName
|
|
}
|