From cce04d56e3d9bf89614f777ecda8602e4360c0dd Mon Sep 17 00:00:00 2001 From: leo Date: Sat, 28 Jan 2023 19:00:52 +0100 Subject: [PATCH] chore: bootstrap p2 --- p2/README.md | 3 +++ p2/go.mod | 3 +++ p2/main.go | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 p2/README.md create mode 100644 p2/go.mod create mode 100644 p2/main.go diff --git a/p2/README.md b/p2/README.md new file mode 100644 index 0000000..5a88be0 --- /dev/null +++ b/p2/README.md @@ -0,0 +1,3 @@ +# p2 + +this is a Go subproject containing code for task no. 2. diff --git a/p2/go.mod b/p2/go.mod new file mode 100644 index 0000000..03a83c8 --- /dev/null +++ b/p2/go.mod @@ -0,0 +1,3 @@ +module git.dotya.ml/wanderer/ak9im/p2 + +go 1.19 diff --git a/p2/main.go b/p2/main.go new file mode 100644 index 0000000..38dd16d --- /dev/null +++ b/p2/main.go @@ -0,0 +1,3 @@ +package main + +func main() {}