M api/handlers/createaction.go => api/handlers/createaction.go +2 -2
@@ 9,13 9,13 @@
package handlers
import (
+ "api/apierror"
"api/db"
"api/models"
- "api/apierror"
"net/http"
- "gorm.io/datatypes"
"github.com/gin-gonic/gin"
+ "gorm.io/datatypes"
)
func CreateAction(c *gin.Context) {
M api/models/action.go => api/models/action.go +2 -2
@@ 24,7 24,7 @@ type Action struct {
Invoker string `json:"invoker"`
Target string `json:"target"`
Command datatypes.JSON `json:"command"`
- Seed uint64 `json:"seed"`
+ Seed string `json:"seed"`
}
type PostAction struct {
@@ 32,5 32,5 @@ type PostAction struct {
Invoker string `json:"invoker"`
Target string `json:"target"`
Command string `json:"command"`
- Seed uint64 `json:"seed"`
+ Seed string `json:"seed"`
}