Windows:在docker中运行golang程序————育儿式教程

1.运行环境

工具 介绍
go 1.13
docker环境 v19.0.2
goland golang的编辑器

2.准备工作

文件目录

1.编写一个go程序main.go,。

在这里插入图片描述

package main
import (
	"net/http"

	"github.com/gin-gonic/gin"
)
func Say(gct *

你可能感兴趣的:(努力成为程序员,go,docker,golang)