model.go 238 B

1234567891011121314
  1. package model
  2. import "time"
  3. //JSONMap structure for json objects
  4. type JSONMap map[string]interface{}
  5. //FileInfo type
  6. type FileInfo struct {
  7. Filename string
  8. ID string
  9. Backend string
  10. UploadDate time.Time
  11. }