19 lines
204 B
Go
19 lines
204 B
Go
package handler
|
|
|
|
// File -
|
|
type File struct {
|
|
Icon string
|
|
URL string
|
|
Name string
|
|
Size string
|
|
Date string
|
|
}
|
|
|
|
// Data -
|
|
type Data struct {
|
|
Title string
|
|
IsRoot bool
|
|
Files []*File
|
|
Readme string
|
|
}
|