Skip to content

Commit

Permalink
chore: delete application field from Meta (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
adohe committed Apr 19, 2024
1 parent 41a90a4 commit e67bcf6
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pkg/cmd/meta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import (
//
// This structure reduces the transformation to wiring and makes the logic itself easy to unit test.
type MetaFlags struct {
Application *string
Workspace *string
Workspace *string

Backend *string
}
Expand All @@ -51,14 +50,12 @@ type MetaOptions struct {

// NewMetaFlags provides default flags and values for use in other commands.
func NewMetaFlags() *MetaFlags {
application := ""
workspace := ""
backendType := ""

return &MetaFlags{
Application: &application,
Workspace: &workspace,
Backend: &backendType,
Workspace: &workspace,
Backend: &backendType,
}
}

Expand Down

0 comments on commit e67bcf6

Please sign in to comment.