blob: bc89a169346e9b7198237ed914c25de1b3786f9d [file] [log] [blame]
hkouser24361d42020-12-14 19:21:47 +05301// Copyright (c) 2018 Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
amit.ghoshee17c002021-06-10 12:14:38 +020016
17option go_package = "github.com/opencord/bbsim/api/bbsim";
18
hkouser24361d42020-12-14 19:21:47 +053019package bbsim;
20
21
22message DmiEvent {
23 string event_name= 1;
24}
25
26message DmiCreateEventResponse {
27 int32 status_code = 1;
28 string message = 2;
29}
30
31service BBsim_dmi {
32 // Ask the DMI Server to create an event
33 rpc CreateEvent (DmiEvent) returns (DmiCreateEventResponse){
34 }
35}