bfs.go 214 B

12345678910
  1. package bfs
  2. //FileInfo : the uploaded file information
  3. type FileInfo struct {
  4. Name string `json:"name"`
  5. Size int64 `json:"size"`
  6. Type string `json:"type"`
  7. Md5 string `json:"md5"`
  8. URL string `json:"url"`
  9. }