10 lines
220 B
Go
10 lines
220 B
Go
package main
|
|
|
|
type Project struct {
|
|
Name string `json:"name"`
|
|
RootPath string `json:"rootPath"`
|
|
Paths []string `json:"paths"`
|
|
Tags []string `json:"tags"`
|
|
Enabled bool `json:"enabled"`
|
|
}
|