1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
package cmd
import (
"fmt"
"log"
"github.com/spf13/cobra"
)
var addCmd = &cobra.Command{
Use: "add <subject>",
Short: "registers the schema provided through stdin",
Long: ``,
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return fmt.Errorf("expected 1 argument")
}
id, err := assertClient().RegisterNewSchema(args[0], stdinToString())
if err != nil {
return err
}
log.Printf("registered schema with id %d\n", id)
return nil
},
}
func init() {
RootCmd.AddCommand(addCmd)
}
|