-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from dolittle/get-config-yaml
Add Configuration Management
- Loading branch information
Showing
2 changed files
with
88 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
Source/Runtime/Management/Configuration/Configuration.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) Dolittle. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
syntax = "proto3"; | ||
|
||
package dolittle.runtime.configuration.management; | ||
|
||
option csharp_namespace = "Dolittle.Runtime.Configuration.Management.Contracts"; | ||
option go_package = "go.dolittle.io/contracts/runtime/configuration/management"; | ||
|
||
|
||
message GetConfigurationYamlRequest { | ||
} | ||
|
||
message GetConfigurationYamlResponse { | ||
string value = 1; | ||
} | ||
|
||
service Configuration { | ||
rpc GetConfigurationYaml(GetConfigurationYamlRequest) returns(GetConfigurationYamlResponse); | ||
} |