summaryrefslogtreecommitdiffstats
path: root/internal/models/files.go
blob: 269d6cc1118e7b79d53d1cacde3c07f584403dba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package models

type OpenDirectorySearchParams struct {
	URL       string
	Filename  string
	Extension string
	Exclude   string
	Size      int
	From      int
}

type OpenDirectorySearchResponse map[string]interface{}