Files
vsclean/types.go
2024-08-13 08:55:22 +02:00

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"`
}