Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678
  1. package domain
  2. type Project struct {
  3. ID string `json:"id"`
  4. Name string `json:"name"`
  5. Description string `json:"description,omitempty"`
  6. Path string `json:"path"`
  7. }