syntax = "proto3";
package devvit.cli;

option go_package = "github.snooguts.net/reddit/reddit-devplatform-monorepo/go-common/generated/protos/types/devvit/cli";

// Response the init cli command expects to receive
message InitAppResponse {
  // One time use auth code to authenticate the CLI to Reddit
  optional string auth_code = 1;
  // Name of the app to be created
  string app_name = 2;
  // Name of the template to be used to create the app
  optional string template_name = 3;
}
