mirror of
https://github.com/Threnklyn/zeit.git
synced 2026-05-18 21:03:30 +02:00
Further cleanup / refactoring
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package z
|
||||
|
||||
import (
|
||||
)
|
||||
|
||||
type Project struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Color string `json:"color,omitempty"`
|
||||
}
|
||||
@@ -10,11 +10,6 @@ import (
|
||||
|
||||
var projectColor string
|
||||
|
||||
type Project struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Color string `json:"color,omitempty"`
|
||||
}
|
||||
|
||||
var projectCmd = &cobra.Command{
|
||||
Use: "project ([flags]) [project]",
|
||||
Short: "Project settings",
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
package z
|
||||
|
||||
import (
|
||||
)
|
||||
|
||||
type Task struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
GitRepository string `json:"gitRepository,omitempty"`
|
||||
}
|
||||
@@ -10,11 +10,6 @@ import (
|
||||
|
||||
var taskGitRepository string
|
||||
|
||||
type Task struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
GitRepository string `json:"gitRepository,omitempty"`
|
||||
}
|
||||
|
||||
var taskCmd = &cobra.Command{
|
||||
Use: "task ([flags]) [task]",
|
||||
Short: "Task settings",
|
||||
|
||||
Reference in New Issue
Block a user