task.go 144 B

1234567891011
  1. package models
  2. import (
  3. "github.com/jinzhu/gorm"
  4. )
  5. // Task represent a automated task
  6. type Task struct {
  7. gorm.Model
  8. LastExecution string
  9. }