remove auth provider

This commit is contained in:
Asim Aslam
2020-07-19 11:37:40 +01:00
parent 96233b2d9b
commit 1838e4a1ee
12 changed files with 225 additions and 276 deletions

10
errors/proto/errors.proto Normal file
View File

@@ -0,0 +1,10 @@
syntax = "proto3";
package errors;
message Error {
string id = 1;
int32 code = 2;
string detail = 3;
string status = 4;
};