Skip to content
Snippets Groups Projects
task.go 105 B
Newer Older
  • Learn to ignore specific revisions
  • package types
    
    import "time"
    
    type Task struct {
    	Date     time.Time
    	Instance string
    	Data     string
    }