syntax = "proto3";

package devvit.plugin_svc.notifications;

import "devvit/plugin_svc/notifications/template_msg.proto";
import "google/protobuf/empty.proto";

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

//Service for registering push notification templates
service Template {
  // Register push notification templates for the app
  rpc RegisterTemplates(RegisterTemplatesRequest) returns (RegisterTemplatesResponse);
  // Get registered push notification templates for the app
  rpc GetTemplates(google.protobuf.Empty) returns (GetTemplatesResponse);
}
