Skip to content

Commit

Permalink
Added the drycop init command.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Jun 17, 2019
1 parent 4a80322 commit e5da7b2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drycop/cmd/init.go
@@ -0,0 +1,21 @@
/* This is free and unencumbered software released into the public domain. */

package cmd

import (
"github.com/spf13/cobra"
)

// InitCmd describes and implements the `drycop init` command
var InitCmd = &cobra.Command{
Use: "init",
Short: "Initializes configuration",
Long: "Initializes configuration",
Run: func(cmd *cobra.Command, args []string) {
// TODO
},
}

func init() {
RootCmd.AddCommand(InitCmd)
}

0 comments on commit e5da7b2

Please sign in to comment.