mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-07 06:12:24 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
18 lines
191 B
Go
18 lines
191 B
Go
package ast
|
|
|
|
type Field struct {
|
|
Key Expr
|
|
Value Expr
|
|
}
|
|
|
|
type ParList struct {
|
|
HasVargs bool
|
|
Names []string
|
|
}
|
|
|
|
type FuncName struct {
|
|
Func Expr
|
|
Receiver Expr
|
|
Method string
|
|
}
|