mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Initial work on async functions
This commit is contained in:
22
api/models/start.go
Normal file
22
api/models/start.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package models
|
||||
|
||||
import "github.com/go-openapi/strfmt"
|
||||
|
||||
// This file was generated by the swagger tool.
|
||||
// Editing this file might prove futile when you re-run the swagger generate command
|
||||
|
||||
/*Start start
|
||||
|
||||
swagger:model Start
|
||||
*/
|
||||
type Start struct {
|
||||
|
||||
/* Time when task started execution. Always in UTC.
|
||||
*/
|
||||
StartedAt strfmt.DateTime `json:"started_at,omitempty"`
|
||||
}
|
||||
|
||||
// Validate validates this start
|
||||
func (m *Start) Validate(formats strfmt.Registry) error {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user