14 lines
349 B
Go
14 lines
349 B
Go
package proto
|
|
|
|
type ListRequest struct {
|
|
Path string `json:"path"`
|
|
IsIncludeSubdirectories bool `json:"isIncludeSubdirectories"`
|
|
}
|
|
|
|
type LabelRequest struct {
|
|
FileList []string `json:"fileList"`
|
|
LabelStatus bool `json:"labelStatus"`
|
|
TrainingSet string `json:"trainingSet"`
|
|
BizType int `json:"bizType"`
|
|
}
|