Skip to content

Commit fd7a562

Browse files
committed
chore: fix lint issues
Signed-off-by: Xe Iaso <me@xeiaso.net>
1 parent c54d056 commit fd7a562

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

proto/techaro/thoth/analytics/v1/analytics.proto

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@ package techaro.thoth.analytics.v1;
33
option go_package = "github.com/TecharoHQ/thoth-proto/proto/thoth/v1";
44

55
import "buf/validate/validate.proto";
6-
import "google/protobuf/duration.proto";
6+
// import "google/protobuf/duration.proto";
77
import "google/protobuf/timestamp.proto";
88

99
enum TargetKind {
10-
Subrequest = 0;
11-
HTTP = 1;
12-
HTTPS = 2;
13-
DomainSocket = 3;
10+
TARGET_KIND_UNSPECIFIED = 0;
11+
TARGET_KIND_SUBREQUEST = 1;
12+
TARGET_KIND_HTTP = 2;
13+
TARGET_KIND_HTTPS = 3;
14+
TARGET_KIND_DOMAIN_SOCKET = 4;
1415
}
1516

1617
enum SecretKind {
17-
ED25519 = 0;
18-
HS256 = 1;
18+
SECRET_KIND_UNSPECIFIED = 0;
19+
SECRET_KIND_ED25519 = 1;
20+
SECRET_KIND_HS256 = 2;
1921
}
2022

2123
message RecordRequest {

0 commit comments

Comments
 (0)