From 89e2b63ee367a4870a25df9ccb99e303efb636d4 Mon Sep 17 00:00:00 2001 From: herenshan112 Date: Mon, 25 Oct 2021 16:05:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 main.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..2107c6f --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module main_exam_server + +go 1.16 diff --git a/main.go b/main.go new file mode 100644 index 0000000..408aed6 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("开始") +}