-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitmodules
1500 lines (1500 loc) · 58.8 KB
/
.gitmodules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[submodule "rawdata/AdguardTeam/AdGuardHome"]
path = projects/AdguardTeam/AdGuardHome
url = https://github.com/AdguardTeam/AdGuardHome.git
[submodule "rawdata/golang/go"]
path = projects/golang/go
url = https://github.com/golang/go.git
[submodule "rawdata/kubernetes/kubernetes"]
path = projects/kubernetes/kubernetes
url = https://github.com/kubernetes/kubernetes.git
[submodule "rawdata/moby/moby"]
path = projects/moby/moby
url = https://github.com/moby/moby.git
[submodule "rawdata/avelino/awesome-go"]
path = projects/avelino/awesome-go
url = https://github.com/avelino/awesome-go.git
[submodule "rawdata/gohugoio/hugo"]
path = projects/gohugoio/hugo
url = https://github.com/gohugoio/hugo.git
[submodule "rawdata/gin-gonic/gin"]
path = projects/gin-gonic/gin
url = https://github.com/gin-gonic/gin.git
[submodule "rawdata/fatedier/frp"]
path = projects/fatedier/frp
url = https://github.com/fatedier/frp.git
[submodule "rawdata/astaxie/build-web-application-with-golang"]
path = projects/astaxie/build-web-application-with-golang
url = https://github.com/astaxie/build-web-application-with-golang.git
[submodule "rawdata/gogs/gogs"]
path = projects/gogs/gogs
url = https://github.com/gogs/gogs.git
[submodule "rawdata/v2ray/v2ray-core"]
path = projects/v2ray/v2ray-core
url = https://github.com/v2ray/v2ray-core.git
[submodule "rawdata/syncthing/syncthing"]
path = projects/syncthing/syncthing
url = https://github.com/syncthing/syncthing.git
[submodule "rawdata/etcd-io/etcd"]
path = projects/etcd-io/etcd
url = https://github.com/etcd-io/etcd.git
[submodule "rawdata/prometheus/prometheus"]
path = projects/prometheus/prometheus
url = https://github.com/prometheus/prometheus.git
[submodule "rawdata/junegunn/fzf"]
path = projects/junegunn/fzf
url = https://github.com/junegunn/fzf.git
[submodule "rawdata/containous/traefik"]
path = projects/containous/traefik
url = https://github.com/containous/traefik.git
[submodule "rawdata/caddyserver/caddy"]
path = projects/caddyserver/caddy
url = https://github.com/caddyserver/caddy.git
[submodule "rawdata/ethereum/go-ethereum"]
path = projects/ethereum/go-ethereum
url = https://github.com/ethereum/go-ethereum.git
[submodule "rawdata/FiloSottile/mkcert"]
path = projects/FiloSottile/mkcert
url = https://github.com/FiloSottile/mkcert.git
[submodule "rawdata/astaxie/beego"]
path = projects/astaxie/beego
url = https://github.com/astaxie/beego.git
[submodule "rawdata/iikira/BaiduPCS-Go"]
path = projects/iikira/BaiduPCS-Go
url = https://github.com/iikira/BaiduPCS-Go.git
[submodule "rawdata/pingcap/tidb"]
path = projects/pingcap/tidb
url = https://github.com/pingcap/tidb.git
[submodule "rawdata/istio/istio"]
path = projects/istio/istio
url = https://github.com/istio/istio.git
[submodule "rawdata/hashicorp/terraform"]
path = projects/hashicorp/terraform
url = https://github.com/hashicorp/terraform.git
[submodule "rawdata/minio/minio"]
path = projects/minio/minio
url = https://github.com/minio/minio.git
[submodule "rawdata/rclone/rclone"]
path = projects/rclone/rclone
url = https://github.com/rclone/rclone.git
[submodule "rawdata/unknwon/the-way-to-go_ZH_CN"]
path = projects/unknwon/the-way-to-go_ZH_CN
url = https://github.com/unknwon/the-way-to-go_ZH_CN.git
[submodule "rawdata/drone/drone"]
path = projects/drone/drone
url = https://github.com/drone/drone.git
[submodule "rawdata/wagoodman/dive"]
path = projects/wagoodman/dive
url = https://github.com/wagoodman/dive.git
[submodule "rawdata/go-gitea/gitea"]
path = projects/go-gitea/gitea
url = https://github.com/go-gitea/gitea.git
[submodule "rawdata/github/hub"]
path = projects/github/hub
url = https://github.com/github/hub.git
[submodule "rawdata/hashicorp/consul"]
path = projects/hashicorp/consul
url = https://github.com/hashicorp/consul.git
[submodule "rawdata/influxdata/influxdb"]
path = projects/influxdata/influxdb
url = https://github.com/influxdata/influxdb.git
[submodule "rawdata/inconshreveable/ngrok"]
path = projects/inconshreveable/ngrok
url = https://github.com/inconshreveable/ngrok.git
[submodule "rawdata/jinzhu/gorm"]
path = projects/jinzhu/gorm
url = https://github.com/jinzhu/gorm.git
[submodule "rawdata/kubernetes/minikube"]
path = projects/kubernetes/minikube
url = https://github.com/kubernetes/minikube.git
[submodule "rawdata/mattermost/mattermost-server"]
path = projects/mattermost/mattermost-server
url = https://github.com/mattermost/mattermost-server.git
[submodule "rawdata/cockroachdb/cockroach"]
path = projects/cockroachdb/cockroach
url = https://github.com/cockroachdb/cockroach.git
[submodule "rawdata/kataras/iris"]
path = projects/kataras/iris
url = https://github.com/kataras/iris.git
[submodule "rawdata/nsqio/nsq"]
path = projects/nsqio/nsq
url = https://github.com/nsqio/nsq.git
[submodule "rawdata/openfaas/faas"]
path = projects/openfaas/faas
url = https://github.com/openfaas/faas.git
[submodule "rawdata/labstack/echo"]
path = projects/labstack/echo
url = https://github.com/labstack/echo.git
[submodule "rawdata/helm/helm"]
path = projects/helm/helm
url = https://github.com/helm/helm.git
[submodule "rawdata/spf13/cobra"]
path = projects/spf13/cobra
url = https://github.com/spf13/cobra.git
[submodule "rawdata/go-kit/kit"]
path = projects/go-kit/kit
url = https://github.com/go-kit/kit.git
[submodule "rawdata/yeasy/docker_practice"]
path = projects/yeasy/docker_practice
url = https://github.com/yeasy/docker_practice.git
[submodule "rawdata/jesseduffield/lazygit"]
path = projects/jesseduffield/lazygit
url = https://github.com/jesseduffield/lazygit.git
[submodule "rawdata/hashicorp/vault"]
path = projects/hashicorp/vault
url = https://github.com/hashicorp/vault.git
[submodule "rawdata/jesseduffield/lazydocker"]
path = projects/jesseduffield/lazydocker
url = https://github.com/jesseduffield/lazydocker.git
[submodule "rawdata/sirupsen/logrus"]
path = projects/sirupsen/logrus
url = https://github.com/sirupsen/logrus.git
[submodule "rawdata/joewalnes/websocketd"]
path = projects/joewalnes/websocketd
url = https://github.com/joewalnes/websocketd.git
[submodule "rawdata/tsenart/vegeta"]
path = projects/tsenart/vegeta
url = https://github.com/tsenart/vegeta.git
[submodule "rawdata/rancher/rancher"]
path = projects/rancher/rancher
url = https://github.com/rancher/rancher.git
[submodule "rawdata/go-delve/delve"]
path = projects/go-delve/delve
url = https://github.com/go-delve/delve.git
[submodule "rawdata/yudai/gotty"]
path = projects/yudai/gotty
url = https://github.com/yudai/gotty.git
[submodule "rawdata/urfave/cli"]
path = projects/urfave/cli
url = https://github.com/urfave/cli.git
[submodule "rawdata/zyedidia/micro"]
path = projects/zyedidia/micro
url = https://github.com/zyedidia/micro.git
[submodule "rawdata/cayleygraph/cayley"]
path = projects/cayleygraph/cayley
url = https://github.com/cayleygraph/cayley.git
[submodule "rawdata/helm/charts"]
path = projects/helm/charts
url = https://github.com/helm/charts.git
[submodule "rawdata/dgraph-io/dgraph"]
path = projects/dgraph-io/dgraph
url = https://github.com/dgraph-io/dgraph.git
[submodule "rawdata/golang/dep"]
path = projects/golang/dep
url = https://github.com/golang/dep.git
[submodule "rawdata/micro/go-micro"]
path = projects/micro/go-micro
url = https://github.com/micro/go-micro.git
[submodule "rawdata/rancher/k3s"]
path = projects/rancher/k3s
url = https://github.com/rancher/k3s.git
[submodule "rawdata/buger/goreplay"]
path = projects/buger/goreplay
url = https://github.com/buger/goreplay.git
[submodule "rawdata/tmrts/go-patterns"]
path = projects/tmrts/go-patterns
url = https://github.com/tmrts/go-patterns.git
[submodule "rawdata/chai2010/advanced-go-programming-book"]
path = projects/chai2010/advanced-go-programming-book
url = https://github.com/chai2010/advanced-go-programming-book.git
[submodule "rawdata/coreybutler/nvm-windows"]
path = projects/coreybutler/nvm-windows
url = https://github.com/coreybutler/nvm-windows.git
[submodule "rawdata/valyala/fasthttp"]
path = projects/valyala/fasthttp
url = https://github.com/valyala/fasthttp.git
[submodule "rawdata/spf13/viper"]
path = projects/spf13/viper
url = https://github.com/spf13/viper.git
[submodule "rawdata/ehang-io/nps"]
path = projects/ehang-io/nps
url = https://github.com/ehang-io/nps.git
[submodule "rawdata/gorilla/websocket"]
path = projects/gorilla/websocket
url = https://github.com/gorilla/websocket.git
[submodule "rawdata/gorilla/mux"]
path = projects/gorilla/mux
url = https://github.com/gorilla/mux.git
[submodule "rawdata/goharbor/harbor"]
path = projects/goharbor/harbor
url = https://github.com/goharbor/harbor.git
[submodule "rawdata/xtaci/kcptun"]
path = projects/xtaci/kcptun
url = https://github.com/xtaci/kcptun.git
[submodule "rawdata/revel/revel"]
path = projects/revel/revel
url = https://github.com/revel/revel.git
[submodule "rawdata/txthinking/brook"]
path = projects/txthinking/brook
url = https://github.com/txthinking/brook.git
[submodule "rawdata/wtfutil/wtf"]
path = projects/wtfutil/wtf
url = https://github.com/wtfutil/wtf.git
[submodule "rawdata/kubernetes/kops"]
path = projects/kubernetes/kops
url = https://github.com/kubernetes/kops.git
[submodule "rawdata/grpc/grpc-go"]
path = projects/grpc/grpc-go
url = https://github.com/grpc/grpc-go.git
[submodule "rawdata/julienschmidt/httprouter"]
path = projects/julienschmidt/httprouter
url = https://github.com/julienschmidt/httprouter.git
[submodule "rawdata/CodisLabs/codis"]
path = projects/CodisLabs/codis
url = https://github.com/CodisLabs/codis.git
[submodule "rawdata/quii/learn-go-with-tests"]
path = projects/quii/learn-go-with-tests
url = https://github.com/quii/learn-go-with-tests.git
[submodule "rawdata/jaegertracing/jaeger"]
path = projects/jaegertracing/jaeger
url = https://github.com/jaegertracing/jaeger.git
[submodule "rawdata/gocolly/colly"]
path = projects/gocolly/colly
url = https://github.com/gocolly/colly.git
[submodule "rawdata/go-martini/martini"]
path = projects/go-martini/martini
url = https://github.com/go-martini/martini.git
[submodule "rawdata/fogleman/primitive"]
path = projects/fogleman/primitive
url = https://github.com/fogleman/primitive.git
[submodule "rawdata/google/cadvisor"]
path = projects/google/cadvisor
url = https://github.com/google/cadvisor.git
[submodule "rawdata/boltdb/bolt"]
path = projects/boltdb/bolt
url = https://github.com/boltdb/bolt.git
[submodule "rawdata/stretchr/testify"]
path = projects/stretchr/testify
url = https://github.com/stretchr/testify.git
[submodule "rawdata/peterq/pan-light"]
path = projects/peterq/pan-light
url = https://github.com/peterq/pan-light.git
[submodule "rawdata/iawia002/annie"]
path = projects/iawia002/annie
url = https://github.com/iawia002/annie.git
[submodule "rawdata/hyperledger/fabric"]
path = projects/hyperledger/fabric
url = https://github.com/hyperledger/fabric.git
[submodule "rawdata/restic/restic"]
path = projects/restic/restic
url = https://github.com/restic/restic.git
[submodule "rawdata/hashicorp/packer"]
path = projects/hashicorp/packer
url = https://github.com/hashicorp/packer.git
[submodule "rawdata/vitessio/vitess"]
path = projects/vitessio/vitess
url = https://github.com/vitessio/vitess.git
[submodule "rawdata/google/grumpy"]
path = projects/google/grumpy
url = https://github.com/google/grumpy.git
[submodule "rawdata/google/gvisor"]
path = projects/google/gvisor
url = https://github.com/google/gvisor.git
[submodule "rawdata/bcicen/ctop"]
path = projects/bcicen/ctop
url = https://github.com/bcicen/ctop.git
[submodule "rawdata/gizak/termui"]
path = projects/gizak/termui
url = https://github.com/gizak/termui.git
[submodule "rawdata/go-kratos/kratos"]
path = projects/go-kratos/kratos
url = https://github.com/go-kratos/kratos.git
[submodule "rawdata/uber-go/zap"]
path = projects/uber-go/zap
url = https://github.com/uber-go/zap.git
[submodule "rawdata/hoanhan101/ultimate-go"]
path = projects/hoanhan101/ultimate-go
url = https://github.com/hoanhan101/ultimate-go.git
[submodule "rawdata/ipfs/go-ipfs"]
path = projects/ipfs/go-ipfs
url = https://github.com/ipfs/go-ipfs.git
[submodule "rawdata/fyne-io/fyne"]
path = projects/fyne-io/fyne
url = https://github.com/fyne-io/fyne.git
[submodule "rawdata/GoogleContainerTools/skaffold"]
path = projects/GoogleContainerTools/skaffold
url = https://github.com/GoogleContainerTools/skaffold.git
[submodule "rawdata/chrislusf/seaweedfs"]
path = projects/chrislusf/seaweedfs
url = https://github.com/chrislusf/seaweedfs.git
[submodule "rawdata/dutchcoders/transfer.sh"]
path = projects/dutchcoders/transfer.sh
url = https://github.com/dutchcoders/transfer.sh.git
[submodule "rawdata/grafana/loki"]
path = projects/grafana/loki
url = https://github.com/grafana/loki.git
[submodule "rawdata/go-sql-driver/mysql"]
path = projects/go-sql-driver/mysql
url = https://github.com/go-sql-driver/mysql.git
[submodule "rawdata/gopherjs/gopherjs"]
path = projects/gopherjs/gopherjs
url = https://github.com/gopherjs/gopherjs.git
[submodule "rawdata/esimov/caire"]
path = projects/esimov/caire
url = https://github.com/esimov/caire.git
[submodule "rawdata/cli/cli"]
path = projects/cli/cli
url = https://github.com/cli/cli.git
[submodule "rawdata/asciimoo/wuzz"]
path = projects/asciimoo/wuzz
url = https://github.com/asciimoo/wuzz.git
[submodule "rawdata/evanw/esbuild"]
path = projects/evanw/esbuild
url = https://github.com/evanw/esbuild.git
[submodule "rawdata/rkt/rkt"]
path = projects/rkt/rkt
url = https://github.com/rkt/rkt.git
[submodule "rawdata/Dreamacro/clash"]
path = projects/Dreamacro/clash
url = https://github.com/Dreamacro/clash.git
[submodule "rawdata/go-redis/redis"]
path = projects/go-redis/redis
url = https://github.com/go-redis/redis.git
[submodule "rawdata/elastic/beats"]
path = projects/elastic/beats
url = https://github.com/elastic/beats.git
[submodule "rawdata/snail007/goproxy"]
path = projects/snail007/goproxy
url = https://github.com/snail007/goproxy.git
[submodule "rawdata/PuerkitoBio/goquery"]
path = projects/PuerkitoBio/goquery
url = https://github.com/PuerkitoBio/goquery.git
[submodule "rawdata/golang/groupcache"]
path = projects/golang/groupcache
url = https://github.com/golang/groupcache.git
[submodule "rawdata/influxdata/telegraf"]
path = projects/influxdata/telegraf
url = https://github.com/influxdata/telegraf.git
[submodule "rawdata/ory/hydra"]
path = projects/ory/hydra
url = https://github.com/ory/hydra.git
[submodule "rawdata/Netflix/chaosmonkey"]
path = projects/Netflix/chaosmonkey
url = https://github.com/Netflix/chaosmonkey.git
[submodule "rawdata/docker-slim/docker-slim"]
path = projects/docker-slim/docker-slim
url = https://github.com/docker-slim/docker-slim.git
[submodule "rawdata/grpc-ecosystem/grpc-gateway"]
path = projects/grpc-ecosystem/grpc-gateway
url = https://github.com/grpc-ecosystem/grpc-gateway.git
[submodule "rawdata/rakyll/hey"]
path = projects/rakyll/hey
url = https://github.com/rakyll/hey.git
[submodule "rawdata/jmoiron/sqlx"]
path = projects/jmoiron/sqlx
url = https://github.com/jmoiron/sqlx.git
[submodule "rawdata/dinedal/textql"]
path = projects/dinedal/textql
url = https://github.com/dinedal/textql.git
[submodule "rawdata/emirpasic/gods"]
path = projects/emirpasic/gods
url = https://github.com/emirpasic/gods.git
[submodule "rawdata/git-lfs/git-lfs"]
path = projects/git-lfs/git-lfs
url = https://github.com/git-lfs/git-lfs.git
[submodule "rawdata/gravitational/teleport"]
path = projects/gravitational/teleport
url = https://github.com/gravitational/teleport.git
[submodule "rawdata/cyfdecyf/cow"]
path = projects/cyfdecyf/cow
url = https://github.com/cyfdecyf/cow.git
[submodule "rawdata/micro/micro"]
path = projects/micro/micro
url = https://github.com/micro/micro.git
[submodule "rawdata/apex/apex"]
path = projects/apex/apex
url = https://github.com/apex/apex.git
[submodule "rawdata/Masterminds/glide"]
path = projects/Masterminds/glide
url = https://github.com/Masterminds/glide.git
[submodule "rawdata/sqshq/sampler"]
path = projects/sqshq/sampler
url = https://github.com/sqshq/sampler.git
[submodule "rawdata/kubernetes/dashboard"]
path = projects/kubernetes/dashboard
url = https://github.com/kubernetes/dashboard.git
[submodule "rawdata/nats-io/nats-server"]
path = projects/nats-io/nats-server
url = https://github.com/nats-io/nats-server.git
[submodule "rawdata/apex/up"]
path = projects/apex/up
url = https://github.com/apex/up.git
[submodule "rawdata/github/gh-ost"]
path = projects/github/gh-ost
url = https://github.com/github/gh-ost.git
[submodule "rawdata/json-iterator/go"]
path = projects/json-iterator/go
url = https://github.com/json-iterator/go.git
[submodule "rawdata/dgraph-io/badger"]
path = projects/dgraph-io/badger
url = https://github.com/dgraph-io/badger.git
[submodule "rawdata/dgrijalva/jwt-go"]
path = projects/dgrijalva/jwt-go
url = https://github.com/dgrijalva/jwt-go.git
[submodule "rawdata/kubernetes/ingress-nginx"]
path = projects/kubernetes/ingress-nginx
url = https://github.com/kubernetes/ingress-nginx.git
[submodule "rawdata/flynn/flynn"]
path = projects/flynn/flynn
url = https://github.com/flynn/flynn.git
[submodule "rawdata/go-chi/chi"]
path = projects/go-chi/chi
url = https://github.com/go-chi/chi.git
[submodule "rawdata/future-architect/vuls"]
path = projects/future-architect/vuls
url = https://github.com/future-architect/vuls.git
[submodule "rawdata/andlabs/ui"]
path = projects/andlabs/ui
url = https://github.com/andlabs/ui.git
[submodule "rawdata/openshift/origin"]
path = projects/openshift/origin
url = https://github.com/openshift/origin.git
[submodule "rawdata/gomodule/redigo"]
path = projects/gomodule/redigo
url = https://github.com/gomodule/redigo.git
[submodule "rawdata/ahmetb/kubectx"]
path = projects/ahmetb/kubectx
url = https://github.com/ahmetb/kubectx.git
[submodule "rawdata/therecipe/qt"]
path = projects/therecipe/qt
url = https://github.com/therecipe/qt.git
[submodule "rawdata/talk-go/night"]
path = projects/talk-go/night
url = https://github.com/talk-go/night.git
[submodule "rawdata/ardanlabs/gotraining"]
path = projects/ardanlabs/gotraining
url = https://github.com/ardanlabs/gotraining.git
[submodule "rawdata/bettercap/bettercap"]
path = projects/bettercap/bettercap
url = https://github.com/bettercap/bettercap.git
[submodule "rawdata/unknwon/go-fundamental-programming"]
path = projects/unknwon/go-fundamental-programming
url = https://github.com/unknwon/go-fundamental-programming.git
[submodule "rawdata/rook/rook"]
path = projects/rook/rook
url = https://github.com/rook/rook.git
[submodule "rawdata/sjwhitworth/golearn"]
path = projects/sjwhitworth/golearn
url = https://github.com/sjwhitworth/golearn.git
[submodule "rawdata/attic-labs/noms"]
path = projects/attic-labs/noms
url = https://github.com/attic-labs/noms.git
[submodule "rawdata/google/go-cloud"]
path = projects/google/go-cloud
url = https://github.com/google/go-cloud.git
[submodule "rawdata/claudiodangelis/qrcp"]
path = projects/claudiodangelis/qrcp
url = https://github.com/claudiodangelis/qrcp.git
[submodule "rawdata/kelseyhightower/confd"]
path = projects/kelseyhightower/confd
url = https://github.com/kelseyhightower/confd.git
[submodule "rawdata/opencontainers/runc"]
path = projects/opencontainers/runc
url = https://github.com/opencontainers/runc.git
[submodule "rawdata/tidwall/tile38"]
path = projects/tidwall/tile38
url = https://github.com/tidwall/tile38.git
[submodule "rawdata/keybase/client"]
path = projects/keybase/client
url = https://github.com/keybase/client.git
[submodule "rawdata/cjbassi/gotop"]
path = projects/cjbassi/gotop
url = https://github.com/cjbassi/gotop.git
[submodule "rawdata/casbin/casbin"]
path = projects/casbin/casbin
url = https://github.com/casbin/casbin.git
[submodule "rawdata/derailed/k9s"]
path = projects/derailed/k9s
url = https://github.com/derailed/k9s.git
[submodule "rawdata/filebrowser/filebrowser"]
path = projects/filebrowser/filebrowser
url = https://github.com/filebrowser/filebrowser.git
[submodule "rawdata/polaris1119/The-Golang-Standard-Library-by-Example"]
path = projects/polaris1119/The-Golang-Standard-Library-by-Example
url = https://github.com/polaris1119/The-Golang-Standard-Library-by-Example.git
[submodule "rawdata/urfave/negroni"]
path = projects/urfave/negroni
url = https://github.com/urfave/negroni.git
[submodule "rawdata/golang/protobuf"]
path = projects/golang/protobuf
url = https://github.com/golang/protobuf.git
[submodule "rawdata/shadowsocks/shadowsocks-go"]
path = projects/shadowsocks/shadowsocks-go
url = https://github.com/shadowsocks/shadowsocks-go.git
[submodule "rawdata/tylertreat/comcast"]
path = projects/tylertreat/comcast
url = https://github.com/tylertreat/comcast.git
[submodule "rawdata/quay/clair"]
path = projects/quay/clair
url = https://github.com/quay/clair.git
[submodule "rawdata/blevesearch/bleve"]
path = projects/blevesearch/bleve
url = https://github.com/blevesearch/bleve.git
[submodule "rawdata/gdrive-org/gdrive"]
path = projects/gdrive-org/gdrive
url = https://github.com/gdrive-org/gdrive.git
[submodule "rawdata/loadimpact/k6"]
path = projects/loadimpact/k6
url = https://github.com/loadimpact/k6.git
[submodule "rawdata/usefathom/fathom"]
path = projects/usefathom/fathom
url = https://github.com/usefathom/fathom.git
[submodule "rawdata/hybridgroup/gobot"]
path = projects/hybridgroup/gobot
url = https://github.com/hybridgroup/gobot.git
[submodule "rawdata/mailhog/MailHog"]
path = projects/mailhog/MailHog
url = https://github.com/mailhog/MailHog.git
[submodule "rawdata/dapr/dapr"]
path = projects/dapr/dapr
url = https://github.com/dapr/dapr.git
[submodule "rawdata/tidwall/gjson"]
path = projects/tidwall/gjson
url = https://github.com/tidwall/gjson.git
[submodule "rawdata/henrylee2cn/pholcus"]
path = projects/henrylee2cn/pholcus
url = https://github.com/henrylee2cn/pholcus.git
[submodule "rawdata/graphql-go/graphql"]
path = projects/graphql-go/graphql
url = https://github.com/graphql-go/graphql.git
[submodule "rawdata/sosedoff/pgweb"]
path = projects/sosedoff/pgweb
url = https://github.com/sosedoff/pgweb.git
[submodule "rawdata/tomnomnom/gron"]
path = projects/tomnomnom/gron
url = https://github.com/tomnomnom/gron.git
[submodule "rawdata/fabiolb/fabio"]
path = projects/fabiolb/fabio
url = https://github.com/fabiolb/fabio.git
[submodule "rawdata/jroimartin/gocui"]
path = projects/jroimartin/gocui
url = https://github.com/jroimartin/gocui.git
[submodule "rawdata/tinygo-org/tinygo"]
path = projects/tinygo-org/tinygo
url = https://github.com/tinygo-org/tinygo.git
[submodule "rawdata/360EntSecGroup-Skylar/excelize"]
path = projects/360EntSecGroup-Skylar/excelize
url = https://github.com/360EntSecGroup-Skylar/excelize.git
[submodule "rawdata/inlets/inlets"]
path = projects/inlets/inlets
url = https://github.com/inlets/inlets.git
[submodule "rawdata/schachmat/wego"]
path = projects/schachmat/wego
url = https://github.com/schachmat/wego.git
[submodule "rawdata/linuxkit/linuxkit"]
path = projects/linuxkit/linuxkit
url = https://github.com/linuxkit/linuxkit.git
[submodule "rawdata/direnv/direnv"]
path = projects/direnv/direnv
url = https://github.com/direnv/direnv.git
[submodule "rawdata/crawlab-team/crawlab"]
path = projects/crawlab-team/crawlab
url = https://github.com/crawlab-team/crawlab.git
[submodule "rawdata/hashicorp/nomad"]
path = projects/hashicorp/nomad
url = https://github.com/hashicorp/nomad.git
[submodule "rawdata/XiaoMi/soar"]
path = projects/XiaoMi/soar
url = https://github.com/XiaoMi/soar.git
[submodule "rawdata/coredns/coredns"]
path = projects/coredns/coredns
url = https://github.com/coredns/coredns.git
[submodule "rawdata/go-xorm/xorm"]
path = projects/go-xorm/xorm
url = https://github.com/go-xorm/xorm.git
[submodule "rawdata/robfig/cron"]
path = projects/robfig/cron
url = https://github.com/robfig/cron.git
[submodule "rawdata/DNSCrypt/dnscrypt-proxy"]
path = projects/DNSCrypt/dnscrypt-proxy
url = https://github.com/DNSCrypt/dnscrypt-proxy.git
[submodule "rawdata/cheat/cheat"]
path = projects/cheat/cheat
url = https://github.com/cheat/cheat.git
[submodule "rawdata/GoogleContainerTools/kaniko"]
path = projects/GoogleContainerTools/kaniko
url = https://github.com/GoogleContainerTools/kaniko.git
[submodule "rawdata/lib/pq"]
path = projects/lib/pq
url = https://github.com/lib/pq.git
[submodule "rawdata/GoesToEleven/GolangTraining"]
path = projects/GoesToEleven/GolangTraining
url = https://github.com/GoesToEleven/GolangTraining.git
[submodule "rawdata/docker/machine"]
path = projects/docker/machine
url = https://github.com/docker/machine.git
[submodule "rawdata/peco/peco"]
path = projects/peco/peco
url = https://github.com/peco/peco.git
[submodule "rawdata/rancher/os"]
path = projects/rancher/os
url = https://github.com/rancher/os.git
[submodule "rawdata/rqlite/rqlite"]
path = projects/rqlite/rqlite
url = https://github.com/rqlite/rqlite.git
[submodule "rawdata/open-falcon/falcon-plus"]
path = projects/open-falcon/falcon-plus
url = https://github.com/open-falcon/falcon-plus.git
[submodule "rawdata/xo/usql"]
path = projects/xo/usql
url = https://github.com/xo/usql.git
[submodule "rawdata/zricethezav/gitleaks"]
path = projects/zricethezav/gitleaks
url = https://github.com/zricethezav/gitleaks.git
[submodule "rawdata/weaveworks/weave"]
path = projects/weaveworks/weave
url = https://github.com/weaveworks/weave.git
[submodule "rawdata/docker/classicswarm"]
path = projects/docker/classicswarm
url = https://github.com/docker/classicswarm.git
[submodule "rawdata/google/go-github"]
path = projects/google/go-github
url = https://github.com/google/go-github.git
[submodule "rawdata/containrrr/watchtower"]
path = projects/containrrr/watchtower
url = https://github.com/containrrr/watchtower.git
[submodule "rawdata/teh-cmc/go-internals"]
path = projects/teh-cmc/go-internals
url = https://github.com/teh-cmc/go-internals.git
[submodule "rawdata/aws/aws-sdk-go"]
path = projects/aws/aws-sdk-go
url = https://github.com/aws/aws-sdk-go.git
[submodule "rawdata/Shopify/sarama"]
path = projects/Shopify/sarama
url = https://github.com/Shopify/sarama.git
[submodule "rawdata/thanos-io/thanos"]
path = projects/thanos-io/thanos
url = https://github.com/thanos-io/thanos.git
[submodule "rawdata/pkg/errors"]
path = projects/pkg/errors
url = https://github.com/pkg/errors.git
[submodule "rawdata/kubeless/kubeless"]
path = projects/kubeless/kubeless
url = https://github.com/kubeless/kubeless.git
[submodule "rawdata/pulumi/pulumi"]
path = projects/pulumi/pulumi
url = https://github.com/pulumi/pulumi.git
[submodule "rawdata/ginuerzh/gost"]
path = projects/ginuerzh/gost
url = https://github.com/ginuerzh/gost.git
[submodule "rawdata/jetstack/cert-manager"]
path = projects/jetstack/cert-manager
url = https://github.com/jetstack/cert-manager.git
[submodule "rawdata/containerd/containerd"]
path = projects/containerd/containerd
url = https://github.com/containerd/containerd.git
[submodule "rawdata/tools/godep"]
path = projects/tools/godep
url = https://github.com/tools/godep.git
[submodule "rawdata/smartystreets/goconvey"]
path = projects/smartystreets/goconvey
url = https://github.com/smartystreets/goconvey.git
[submodule "rawdata/goreleaser/goreleaser"]
path = projects/goreleaser/goreleaser
url = https://github.com/goreleaser/goreleaser.git
[submodule "rawdata/gobuffalo/buffalo"]
path = projects/gobuffalo/buffalo
url = https://github.com/gobuffalo/buffalo.git
[submodule "rawdata/Workiva/go-datastructures"]
path = projects/Workiva/go-datastructures
url = https://github.com/Workiva/go-datastructures.git
[submodule "rawdata/argoproj/argo"]
path = projects/argoproj/argo
url = https://github.com/argoproj/argo.git
[submodule "rawdata/linkerd/linkerd2"]
path = projects/linkerd/linkerd2
url = https://github.com/linkerd/linkerd2.git
[submodule "rawdata/gofiber/fiber"]
path = projects/gofiber/fiber
url = https://github.com/gofiber/fiber.git
[submodule "rawdata/kubernetes-sigs/kind"]
path = projects/kubernetes-sigs/kind
url = https://github.com/kubernetes-sigs/kind.git
[submodule "rawdata/simeji/jid"]
path = projects/simeji/jid
url = https://github.com/simeji/jid.git
[submodule "rawdata/nektos/act"]
path = projects/nektos/act
url = https://github.com/nektos/act.git
[submodule "rawdata/cdr/sshcode"]
path = projects/cdr/sshcode
url = https://github.com/cdr/sshcode.git
[submodule "rawdata/upspin/upspin"]
path = projects/upspin/upspin
url = https://github.com/upspin/upspin.git
[submodule "rawdata/cilium/cilium"]
path = projects/cilium/cilium
url = https://github.com/cilium/cilium.git
[submodule "rawdata/slackhq/nebula"]
path = projects/slackhq/nebula
url = https://github.com/slackhq/nebula.git
[submodule "rawdata/TykTechnologies/tyk"]
path = projects/TykTechnologies/tyk
url = https://github.com/TykTechnologies/tyk.git
[submodule "rawdata/kubernetes-sigs/kustomize"]
path = projects/kubernetes-sigs/kustomize
url = https://github.com/kubernetes-sigs/kustomize.git
[submodule "rawdata/erroneousboat/slack-term"]
path = projects/erroneousboat/slack-term
url = https://github.com/erroneousboat/slack-term.git
[submodule "rawdata/coreos/flannel"]
path = projects/coreos/flannel
url = https://github.com/coreos/flannel.git
[submodule "rawdata/zserge/lorca"]
path = projects/zserge/lorca
url = https://github.com/zserge/lorca.git
[submodule "rawdata/photoprism/photoprism"]
path = projects/photoprism/photoprism
url = https://github.com/photoprism/photoprism.git
[submodule "rawdata/go-playground/validator"]
path = projects/go-playground/validator
url = https://github.com/go-playground/validator.git
[submodule "rawdata/golangci/golangci-lint"]
path = projects/golangci/golangci-lint
url = https://github.com/golangci/golangci-lint.git
[submodule "rawdata/robertkrimen/otto"]
path = projects/robertkrimen/otto
url = https://github.com/robertkrimen/otto.git
[submodule "rawdata/filhodanuvem/gitql"]
path = projects/filhodanuvem/gitql
url = https://github.com/filhodanuvem/gitql.git
[submodule "rawdata/docker/distribution"]
path = projects/docker/distribution
url = https://github.com/docker/distribution.git
[submodule "rawdata/yeasy/blockchain_guide"]
path = projects/yeasy/blockchain_guide
url = https://github.com/yeasy/blockchain_guide.git
[submodule "rawdata/adnanh/webhook"]
path = projects/adnanh/webhook
url = https://github.com/adnanh/webhook.git
[submodule "rawdata/cloudflare/cfssl"]
path = projects/cloudflare/cfssl
url = https://github.com/cloudflare/cfssl.git
[submodule "rawdata/gcla/termshark"]
path = projects/gcla/termshark
url = https://github.com/gcla/termshark.git
[submodule "rawdata/go-ego/riot"]
path = projects/go-ego/riot
url = https://github.com/go-ego/riot.git
[submodule "rawdata/kubernetes/kompose"]
path = projects/kubernetes/kompose
url = https://github.com/kubernetes/kompose.git
[submodule "rawdata/flike/kingshard"]
path = projects/flike/kingshard
url = https://github.com/flike/kingshard.git
[submodule "rawdata/go-swagger/go-swagger"]
path = projects/go-swagger/go-swagger
url = https://github.com/go-swagger/go-swagger.git
[submodule "rawdata/fission/fission"]
path = projects/fission/fission
url = https://github.com/fission/fission.git
[submodule "rawdata/src-d/go-git"]
path = projects/src-d/go-git
url = https://github.com/src-d/go-git.git
[submodule "rawdata/olivere/elastic"]
path = projects/olivere/elastic
url = https://github.com/olivere/elastic.git
[submodule "rawdata/google/seesaw"]
path = projects/google/seesaw
url = https://github.com/google/seesaw.git
[submodule "rawdata/kardianos/govendor"]
path = projects/kardianos/govendor
url = https://github.com/kardianos/govendor.git
[submodule "rawdata/tektoncd/pipeline"]
path = projects/tektoncd/pipeline
url = https://github.com/tektoncd/pipeline.git
[submodule "rawdata/yinghuocho/firefly-proxy"]
path = projects/yinghuocho/firefly-proxy
url = https://github.com/yinghuocho/firefly-proxy.git
[submodule "rawdata/akavel/up"]
path = projects/akavel/up
url = https://github.com/akavel/up.git
[submodule "rawdata/dragonflyoss/Dragonfly"]
path = projects/dragonflyoss/Dragonfly
url = https://github.com/dragonflyoss/Dragonfly.git
[submodule "rawdata/bitly/oauth2_proxy"]
path = projects/bitly/oauth2_proxy
url = https://github.com/bitly/oauth2_proxy.git
[submodule "rawdata/concourse/concourse"]
path = projects/concourse/concourse
url = https://github.com/concourse/concourse.git
[submodule "rawdata/shirou/gopsutil"]
path = projects/shirou/gopsutil
url = https://github.com/shirou/gopsutil.git
[submodule "rawdata/hashicorp/serf"]
path = projects/hashicorp/serf
url = https://github.com/hashicorp/serf.git
[submodule "rawdata/ponzu-cms/ponzu"]
path = projects/ponzu-cms/ponzu
url = https://github.com/ponzu-cms/ponzu.git
[submodule "rawdata/nsf/gocode"]
path = projects/nsf/gocode
url = https://github.com/nsf/gocode.git
[submodule "rawdata/cortexlabs/cortex"]
path = projects/cortexlabs/cortex
url = https://github.com/cortexlabs/cortex.git
[submodule "rawdata/perkeep/perkeep"]
path = projects/perkeep/perkeep
url = https://github.com/perkeep/perkeep.git
[submodule "rawdata/rakyll/boom"]
path = projects/rakyll/boom
url = https://github.com/rakyll/boom.git
[submodule "rawdata/fluxcd/flux"]
path = projects/fluxcd/flux
url = https://github.com/fluxcd/flux.git
[submodule "rawdata/Jguer/yay"]
path = projects/Jguer/yay
url = https://github.com/Jguer/yay.git
[submodule "rawdata/cloudreve/Cloudreve"]
path = projects/cloudreve/Cloudreve
url = https://github.com/cloudreve/Cloudreve.git
[submodule "rawdata/chromedp/chromedp"]
path = projects/chromedp/chromedp
url = https://github.com/chromedp/chromedp.git
[submodule "rawdata/schollz/find"]
path = projects/schollz/find
url = https://github.com/schollz/find.git
[submodule "rawdata/gotify/server"]
path = projects/gotify/server
url = https://github.com/gotify/server.git
[submodule "rawdata/OpenDiablo2/OpenDiablo2"]
path = projects/OpenDiablo2/OpenDiablo2
url = https://github.com/OpenDiablo2/OpenDiablo2.git
[submodule "rawdata/davecheney/httpstat"]
path = projects/davecheney/httpstat
url = https://github.com/davecheney/httpstat.git
[submodule "rawdata/gophish/gophish"]
path = projects/gophish/gophish
url = https://github.com/gophish/gophish.git
[submodule "rawdata/fiorix/freegeoip"]
path = projects/fiorix/freegeoip
url = https://github.com/fiorix/freegeoip.git
[submodule "rawdata/inancgumus/learngo"]
path = projects/inancgumus/learngo
url = https://github.com/inancgumus/learngo.git
[submodule "rawdata/appleboy/gorush"]
path = projects/appleboy/gorush
url = https://github.com/appleboy/gorush.git
[submodule "rawdata/smallnest/rpcx"]
path = projects/smallnest/rpcx
url = https://github.com/smallnest/rpcx.git
[submodule "rawdata/prometheus/node_exporter"]
path = projects/prometheus/node_exporter
url = https://github.com/prometheus/node_exporter.git
[submodule "rawdata/wallix/awless"]
path = projects/wallix/awless
url = https://github.com/wallix/awless.git
[submodule "rawdata/miekg/dns"]
path = projects/miekg/dns
url = https://github.com/miekg/dns.git
[submodule "rawdata/fnproject/fn"]
path = projects/fnproject/fn
url = https://github.com/fnproject/fn.git
[submodule "rawdata/pion/webrtc"]
path = projects/pion/webrtc
url = https://github.com/pion/webrtc.git
[submodule "rawdata/facebookarchive/grace"]
path = projects/facebookarchive/grace
url = https://github.com/facebookarchive/grace.git
[submodule "rawdata/google/battery-historian"]
path = projects/google/battery-historian
url = https://github.com/google/battery-historian.git
[submodule "rawdata/containers/libpod"]
path = projects/containers/libpod
url = https://github.com/containers/libpod.git
[submodule "rawdata/Shopify/toxiproxy"]
path = projects/Shopify/toxiproxy
url = https://github.com/Shopify/toxiproxy.git
[submodule "rawdata/michenriksen/gitrob"]
path = projects/michenriksen/gitrob
url = https://github.com/michenriksen/gitrob.git
[submodule "rawdata/dexidp/dex"]
path = projects/dexidp/dex
url = https://github.com/dexidp/dex.git
[submodule "rawdata/lxn/walk"]
path = projects/lxn/walk
url = https://github.com/lxn/walk.git
[submodule "rawdata/99designs/gqlgen"]
path = projects/99designs/gqlgen
url = https://github.com/99designs/gqlgen.git
[submodule "rawdata/lightningnetwork/lnd"]
path = projects/lightningnetwork/lnd
url = https://github.com/lightningnetwork/lnd.git
[submodule "rawdata/fogleman/nes"]
path = projects/fogleman/nes
url = https://github.com/fogleman/nes.git
[submodule "rawdata/fsnotify/fsnotify"]
path = projects/fsnotify/fsnotify
url = https://github.com/fsnotify/fsnotify.git
[submodule "rawdata/MichaelMure/git-bug"]
path = projects/MichaelMure/git-bug
url = https://github.com/MichaelMure/git-bug.git
[submodule "rawdata/muesli/beehive"]
path = projects/muesli/beehive
url = https://github.com/muesli/beehive.git
[submodule "rawdata/mongodb/mongo-go-driver"]
path = projects/mongodb/mongo-go-driver
url = https://github.com/mongodb/mongo-go-driver.git
[submodule "rawdata/qor/qor"]
path = projects/qor/qor
url = https://github.com/qor/qor.git
[submodule "rawdata/pachyderm/pachyderm"]
path = projects/pachyderm/pachyderm
url = https://github.com/pachyderm/pachyderm.git
[submodule "rawdata/golang-migrate/migrate"]
path = projects/golang-migrate/migrate
url = https://github.com/golang-migrate/migrate.git
[submodule "rawdata/google/gxui"]
path = projects/google/gxui
url = https://github.com/google/gxui.git
[submodule "rawdata/jpillora/cloud-torrent"]
path = projects/jpillora/cloud-torrent
url = https://github.com/jpillora/cloud-torrent.git
[submodule "rawdata/russross/blackfriday"]
path = projects/russross/blackfriday
url = https://github.com/russross/blackfriday.git
[submodule "rawdata/weaveworks/scope"]
path = projects/weaveworks/scope
url = https://github.com/weaveworks/scope.git
[submodule "rawdata/mozilla/sops"]
path = projects/mozilla/sops
url = https://github.com/mozilla/sops.git
[submodule "rawdata/gliderlabs/registrator"]
path = projects/gliderlabs/registrator
url = https://github.com/gliderlabs/registrator.git
[submodule "rawdata/rivo/tview"]
path = projects/rivo/tview
url = https://github.com/rivo/tview.git
[submodule "rawdata/centrifugal/centrifugo"]
path = projects/centrifugal/centrifugo
url = https://github.com/centrifugal/centrifugo.git
[submodule "rawdata/docker/docker-ce"]
path = projects/docker/docker-ce
url = https://github.com/docker/docker-ce.git
[submodule "rawdata/coreos/prometheus-operator"]
path = projects/coreos/prometheus-operator
url = https://github.com/coreos/prometheus-operator.git
[submodule "rawdata/uber/prototool"]
path = projects/uber/prototool
url = https://github.com/uber/prototool.git
[submodule "rawdata/spiral/roadrunner"]
path = projects/spiral/roadrunner
url = https://github.com/spiral/roadrunner.git
[submodule "rawdata/terraform-providers/terraform-provider-aws"]
path = projects/terraform-providers/terraform-provider-aws
url = https://github.com/terraform-providers/terraform-provider-aws.git
[submodule "rawdata/coyove/goflyway"]
path = projects/coyove/goflyway
url = https://github.com/coyove/goflyway.git
[submodule "rawdata/adonovan/gopl.io"]
path = projects/adonovan/gopl.io
url = https://github.com/adonovan/gopl.io.git
[submodule "rawdata/alibaba/pouch"]
path = projects/alibaba/pouch
url = https://github.com/alibaba/pouch.git
[submodule "rawdata/eranyanay/1m-go-websockets"]
path = projects/eranyanay/1m-go-websockets
url = https://github.com/eranyanay/1m-go-websockets.git
[submodule "rawdata/tealeg/xlsx"]
path = projects/tealeg/xlsx
url = https://github.com/tealeg/xlsx.git
[submodule "rawdata/Terry-Mao/goim"]