mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 01:08:24 +08:00
12 lines
206 B
Go
12 lines
206 B
Go
package model
|
|
|
|
type Function struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
Name string
|
|
Description string
|
|
Parameters string
|
|
Required string
|
|
Action string
|
|
Enabled bool
|
|
}
|