File tree 9 files changed +15
-12
lines changed
9 files changed +15
-12
lines changed Original file line number Diff line number Diff line change
1
+ [ ![ tests] ( https://github.com/C4T-BuT-S4D/FastAD/actions/workflows/tests.yml/badge.svg?branch=master )] ( https://github.com/C4T-BuT-S4D/FastAD/actions/workflows/tests.yml )
2
+
1
3
# FastAD
4
+
2
5
Blazing fast Attack & ; Defence CTF platform
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ import (
9
9
"syscall"
10
10
"time"
11
11
12
- "fastad/internal/multiproto"
13
- "fastad/internal/pinger"
14
- "fastad/internal/receiver"
15
- pingerpb "fastad/pkg/proto/pinger"
16
- receiverpb "fastad/pkg/proto/receiver"
12
+ "github.com/c4t-but-s4d/ fastad/internal/multiproto"
13
+ "github.com/c4t-but-s4d/ fastad/internal/pinger"
14
+ "github.com/c4t-but-s4d/ fastad/internal/receiver"
15
+ pingerpb "github.com/c4t-but-s4d/ fastad/pkg/proto/pinger"
16
+ receiverpb "github.com/c4t-but-s4d/ fastad/pkg/proto/receiver"
17
17
18
18
"github.com/sirupsen/logrus"
19
19
"google.golang.org/grpc"
Original file line number Diff line number Diff line change 1
- module fastad
1
+ module github.com/c4t-but-s4d/ fastad
2
2
3
3
go 1.18
4
4
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package pinger
3
3
import (
4
4
"context"
5
5
6
- pingerpb "fastad/pkg/proto/pinger"
6
+ pingerpb "github.com/c4t-but-s4d/ fastad/pkg/proto/pinger"
7
7
)
8
8
9
9
func New () * Service {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package receiver
3
3
import (
4
4
"context"
5
5
6
- receiverpb "fastad/pkg/proto/receiver"
6
+ receiverpb "github.com/c4t-but-s4d/ fastad/pkg/proto/receiver"
7
7
8
8
"google.golang.org/grpc/codes"
9
9
"google.golang.org/grpc/status"
Original file line number Diff line number Diff line change 1
1
syntax = "proto3" ;
2
2
3
3
package pinger ;
4
- option go_package = "fastad/pkg/proto/pinger" ;
4
+ option go_package = "github.com/c4t-but-s4d/ fastad/pkg/proto/pinger" ;
5
5
6
6
message PingRequest {}
7
7
Original file line number Diff line number Diff line change 1
1
syntax = "proto3" ;
2
2
3
3
package pinger ;
4
- option go_package = "fastad/pkg/proto/pinger" ;
4
+ option go_package = "github.com/c4t-but-s4d/ fastad/pkg/proto/pinger" ;
5
5
6
6
import "pinger/pinger.proto" ;
7
7
Original file line number Diff line number Diff line change 1
1
syntax = "proto3" ;
2
2
3
3
package receiver ;
4
- option go_package = "fastad/pkg/proto/receiver" ;
4
+ option go_package = "github.com/c4t-but-s4d/ fastad/pkg/proto/receiver" ;
5
5
6
6
message SubmitFlagsRequest {
7
7
repeated string flags = 1 ;
Original file line number Diff line number Diff line change 1
1
syntax = "proto3" ;
2
2
3
3
package receiver ;
4
- option go_package = "fastad/pkg/proto/receiver" ;
4
+ option go_package = "github.com/c4t-but-s4d/ fastad/pkg/proto/receiver" ;
5
5
6
6
import "receiver/receiver.proto" ;
7
7
You can’t perform that action at this time.
0 commit comments