diff --git a/chapter-B.22-simple-configuration/go.mod b/chapter-B.22-simple-configuration/go.mod index 68e1879..f4b3fd1 100644 --- a/chapter-B.22-simple-configuration/go.mod +++ b/chapter-B.22-simple-configuration/go.mod @@ -1,3 +1,3 @@ -module chapter-B.22-configuration-file +module chapter-B.22-simple-configuration go 1.20 diff --git a/chapter-C.10-advanced-configuration-viper/go.mod b/chapter-C.10-advanced-configuration-viper/go.mod index 21d7291..ed2e9cf 100644 --- a/chapter-C.10-advanced-configuration-viper/go.mod +++ b/chapter-C.10-advanced-configuration-viper/go.mod @@ -1,4 +1,4 @@ -module chapter-C.8.A-advanced-configuration-viper +module chapter-C.10-advanced-configuration-viper go 1.20 diff --git a/chapter-C.11-best-practice-configuration-env-var/go.mod b/chapter-C.11-best-practice-configuration-env-var/go.mod index e19dd6e..912021d 100644 --- a/chapter-C.11-best-practice-configuration-env-var/go.mod +++ b/chapter-C.11-best-practice-configuration-env-var/go.mod @@ -1,4 +1,4 @@ -module chapter-C.8.B-best-practice-configuration-env-var +module chapter-C.11-best-practice-configuration-env-var go 1.20 diff --git a/chapter-C.12-securecookie/go.mod b/chapter-C.12-securecookie/go.mod index 6f54e48..75fa135 100644 --- a/chapter-C.12-securecookie/go.mod +++ b/chapter-C.12-securecookie/go.mod @@ -1,4 +1,4 @@ -module chapter-C.9-securecookie +module chapter-C.12-securecookie go 1.20 diff --git a/chapter-C.13-session/go.mod b/chapter-C.13-session/go.mod index 34a95a1..cffaa3c 100644 --- a/chapter-C.13-session/go.mod +++ b/chapter-C.13-session/go.mod @@ -1,4 +1,4 @@ -module chapter-C.10-session +module chapter-C.13-session go 1.20 diff --git a/chapter-C.14-cors-preflight-request/go.mod b/chapter-C.14-cors-preflight-request/go.mod index 36cf744..c6c05f1 100644 --- a/chapter-C.14-cors-preflight-request/go.mod +++ b/chapter-C.14-cors-preflight-request/go.mod @@ -1,4 +1,4 @@ -module chapter-C.12-cors-preflight-request +module chapter-C.14-cors-preflight-request go 1.20 diff --git a/chapter-C.15-csrf/go.mod b/chapter-C.15-csrf/go.mod index b8a2f1d..471805c 100644 --- a/chapter-C.15-csrf/go.mod +++ b/chapter-C.15-csrf/go.mod @@ -1,4 +1,4 @@ -module chapter-C.13-csrf +module chapter-C.15-csrf go 1.20 diff --git a/chapter-C.16-secure-middleware/go.mod b/chapter-C.16-secure-middleware/go.mod index b385863..79e5aed 100644 --- a/chapter-C.16-secure-middleware/go.mod +++ b/chapter-C.16-secure-middleware/go.mod @@ -1,4 +1,4 @@ -module chapter-C.14-secure-middleware +module chapter-C.16-secure-middleware go 1.20 diff --git a/chapter-C.17-http-gzip-compression/go.mod b/chapter-C.17-http-gzip-compression/go.mod index e28d8c6..d414f51 100644 --- a/chapter-C.17-http-gzip-compression/go.mod +++ b/chapter-C.17-http-gzip-compression/go.mod @@ -1,4 +1,4 @@ -module chapter-C.15-http-gzip-compression +module chapter-C.17-http-gzip-compression go 1.20 diff --git a/chapter-C.18-send-email/go.mod b/chapter-C.18-send-email/go.mod index 98746db..6c6211c 100644 --- a/chapter-C.18-send-email/go.mod +++ b/chapter-C.18-send-email/go.mod @@ -1,4 +1,4 @@ -module chapter-C.16-send-email +module chapter-C.18-send-email go 1.20 diff --git a/chapter-C.19-read-write-excel-xlsx-file/go.mod b/chapter-C.19-read-write-excel-xlsx-file/go.mod index 017ee19..2cbab50 100644 --- a/chapter-C.19-read-write-excel-xlsx-file/go.mod +++ b/chapter-C.19-read-write-excel-xlsx-file/go.mod @@ -1,4 +1,4 @@ -module chapter-C.17-read-write-excel-xlsx-file +module chapter-C.19-read-write-excel-xlsx-file go 1.20 diff --git a/chapter-C.20-write-pdf-file/go.mod b/chapter-C.20-write-pdf-file/go.mod index 97e0641..3cd2fff 100644 --- a/chapter-C.20-write-pdf-file/go.mod +++ b/chapter-C.20-write-pdf-file/go.mod @@ -1,4 +1,4 @@ -module chapter-C.18-write-pdf-file +module chapter-C.20-write-pdf-file go 1.20 diff --git a/chapter-C.21-convert-html-to-pdf/go.mod b/chapter-C.21-convert-html-to-pdf/go.mod index d8aac24..8e467ab 100644 --- a/chapter-C.21-convert-html-to-pdf/go.mod +++ b/chapter-C.21-convert-html-to-pdf/go.mod @@ -1,4 +1,4 @@ -module chapter-C.19-convert-html-to-pdf +module chapter-C.22-convert-html-to-pdf go 1.20 diff --git a/chapter-C.23-xml-parser/go.mod b/chapter-C.23-xml-parser/go.mod index 355cadc..0f3ade6 100644 --- a/chapter-C.23-xml-parser/go.mod +++ b/chapter-C.23-xml-parser/go.mod @@ -1,4 +1,4 @@ -module chapter-C.21-xml-parser +module chapter-C.23-xml-parser go 1.20 diff --git a/chapter-C.28-golang-ftp/go.mod b/chapter-C.28-golang-ftp/go.mod index 4a669cc..3197c6d 100644 --- a/chapter-C.28-golang-ftp/go.mod +++ b/chapter-C.28-golang-ftp/go.mod @@ -1,4 +1,4 @@ -module chapter-C.26-golang-ftp +module chapter-C.28-golang-ftp go 1.20 diff --git a/chapter-C.29-golang-ssh-sftp/go.mod b/chapter-C.29-golang-ssh-sftp/go.mod index 8224bb8..95e87f5 100644 --- a/chapter-C.29-golang-ssh-sftp/go.mod +++ b/chapter-C.29-golang-ssh-sftp/go.mod @@ -1,4 +1,4 @@ -module chapter-C.27-golang-ssh-sftp +module chapter-C.29-golang-ssh-sftp go 1.20 diff --git a/chapter-C.3-echo-routing/go.mod b/chapter-C.3-echo-routing/go.mod index 4e03f91..b593a8f 100644 --- a/chapter-C.3-echo-routing/go.mod +++ b/chapter-C.3-echo-routing/go.mod @@ -1,4 +1,4 @@ -module chapter-C.1-echo-routing +module chapter-C.3-echo-routing go 1.20 diff --git a/chapter-C.32-golang-jwt/go.mod b/chapter-C.32-golang-jwt/go.mod index badddd7..d4c05e1 100644 --- a/chapter-C.32-golang-jwt/go.mod +++ b/chapter-C.32-golang-jwt/go.mod @@ -1,4 +1,4 @@ -module chapter-c32 +module chapter-C.32-golang-jwt go 1.20 diff --git a/chapter-C.34-sso-saml-sp/go.mod b/chapter-C.34-sso-saml-sp/go.mod index a7a4f68..1bb3093 100644 --- a/chapter-C.34-sso-saml-sp/go.mod +++ b/chapter-C.34-sso-saml-sp/go.mod @@ -1,4 +1,4 @@ -module chapter-c34 +module chapter-C.34-sso-saml-sp go 1.20 diff --git a/chapter-C.36-redis/go.mod b/chapter-C.36-redis/go.mod index 5a0c732..166bc7d 100644 --- a/chapter-C.36-redis/go.mod +++ b/chapter-C.36-redis/go.mod @@ -1,4 +1,4 @@ -module ok +module chapter-C.36-redis go 1.20 diff --git a/chapter-C.37-singleflight/go.mod b/chapter-C.37-singleflight/go.mod index f7d5719..1b6e79f 100644 --- a/chapter-C.37-singleflight/go.mod +++ b/chapter-C.37-singleflight/go.mod @@ -1,4 +1,4 @@ -module singleflight +module chapter-C.32-golang-jwt go 1.20 diff --git a/chapter-C.38-aws-s3/go.mod b/chapter-C.38-aws-s3/go.mod index 398b464..6a5edd6 100644 --- a/chapter-C.38-aws-s3/go.mod +++ b/chapter-C.38-aws-s3/go.mod @@ -1,4 +1,4 @@ -module go-s3 +module chapter-C.38-aws-s3 go 1.20 diff --git a/chapter-C.4-parsing-http-request-payload-echo/go.mod b/chapter-C.4-parsing-http-request-payload-echo/go.mod index c233323..894a247 100644 --- a/chapter-C.4-parsing-http-request-payload-echo/go.mod +++ b/chapter-C.4-parsing-http-request-payload-echo/go.mod @@ -1,4 +1,4 @@ -module chapter-C.2-parsing-http-request-payload-echo +module chapter-C.4-parsing-http-request-payload-echo go 1.20 diff --git a/chapter-C.5-http-request-payload-validation/go.mod b/chapter-C.5-http-request-payload-validation/go.mod index 5136850..1aa874f 100644 --- a/chapter-C.5-http-request-payload-validation/go.mod +++ b/chapter-C.5-http-request-payload-validation/go.mod @@ -1,4 +1,4 @@ -module chapter-C.3-http-request-payload-validation +module chapter-C.5-http-request-payload-validation go 1.20 diff --git a/chapter-C.6-http-error-handling/go.mod b/chapter-C.6-http-error-handling/go.mod index e9b7400..c5f54f3 100644 --- a/chapter-C.6-http-error-handling/go.mod +++ b/chapter-C.6-http-error-handling/go.mod @@ -1,4 +1,4 @@ -module chapter-C.4-http-error-handling +module chapter-C.6-http-error-handling go 1.20 diff --git a/chapter-C.7-echo-template-rendering/go.mod b/chapter-C.7-echo-template-rendering/go.mod index effe343..7fbd5a9 100644 --- a/chapter-C.7-echo-template-rendering/go.mod +++ b/chapter-C.7-echo-template-rendering/go.mod @@ -1,4 +1,4 @@ -module chapter-C.5-echo-template-rendering +module chapter-C.7-echo-template-rendering go 1.20 diff --git a/chapter-C.8-advanced-middleware-and-logging/go.mod b/chapter-C.8-advanced-middleware-and-logging/go.mod index ab6ea8b..58bc9f5 100644 --- a/chapter-C.8-advanced-middleware-and-logging/go.mod +++ b/chapter-C.8-advanced-middleware-and-logging/go.mod @@ -1,4 +1,4 @@ -module chapter-C.6-advanced-middleware-and-logging +module chapter-C.8-advanced-middleware-and-logging go 1.20 diff --git a/chapter-C.9-flag-parser/go.mod b/chapter-C.9-flag-parser/go.mod index d3e69fa..a5979ca 100644 --- a/chapter-C.9-flag-parser/go.mod +++ b/chapter-C.9-flag-parser/go.mod @@ -1,4 +1,4 @@ -module chapter-C.7-flag-parser +module chapter-C.9-flag-parser go 1.20 diff --git a/chapter-D.1-insert-1mil-csv-record-into-db-in-a-minute/go.mod b/chapter-D.1-insert-1mil-csv-record-into-db-in-a-minute/go.mod index 474b5b0..6c0ffa5 100644 --- a/chapter-D.1-insert-1mil-csv-record-into-db-in-a-minute/go.mod +++ b/chapter-D.1-insert-1mil-csv-record-into-db-in-a-minute/go.mod @@ -1,4 +1,4 @@ -module go-bulk-insert +module chapter-D.1 go 1.20 diff --git a/chapter-D.3-golang-web-socket-chatting-app/go.mod b/chapter-D.3-golang-web-socket-chatting-app/go.mod index 1efe2a3..d42ccec 100644 --- a/chapter-D.3-golang-web-socket-chatting-app/go.mod +++ b/chapter-D.3-golang-web-socket-chatting-app/go.mod @@ -1,4 +1,4 @@ -module chapter-c28 +module chapter-D.3 go 1.20 diff --git a/in progress/chapter-D.4-golang-webrtc-video-conference/go.mod b/in progress/chapter-D.4-golang-webrtc-video-conference/go.mod index 8e5ae4f..759ac60 100644 --- a/in progress/chapter-D.4-golang-webrtc-video-conference/go.mod +++ b/in progress/chapter-D.4-golang-webrtc-video-conference/go.mod @@ -1,4 +1,4 @@ -module webrtc +module chapter-D.4 go 1.20