forked from CodeYourFuture/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
18 lines (12 loc) · 795 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module github.com/CodeYourFuture/curriculum/org-cyf
go 1.22.6
require (
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240818070728-e8702788f7cb // indirect
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240818070728-e8702788f7cb // indirect
github.com/CodeYourFuture/curriculum/org-cyf-guides v0.0.0-20240721115017-ac0d39b0bbe3 // indirect
github.com/CodeYourFuture/curriculum/org-cyf-theme v0.0.0-20240818070728-e8702788f7cb // indirect
)
replace github.com/CodeYourFuture/curriculum/common-content => ../common-content
replace github.com/CodeYourFuture/curriculum/common-theme => ../common-theme
replace github.com/CodeYourFuture/curriculum/org-cyf-guides => ../org-cyf-guides
replace github.com/CodeYourFuture/curriculum/org-cyf-theme => ../org-cyf-theme