blob: 090d1288c26c86bc929b99a17d7b03e75f287278 [file] [log] [blame]
// Copyright 2016 The Goma Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package devtools_goma;
message Settings {
string name = 3;
string endpoint_url = 1;
string certificate = 2;
reserved 4;
}
message SettingsReq {
reserved 1;
string use_case = 2;
}
message SettingsResp {
Settings settings = 1;
}