初始化仓库

This commit is contained in:
白茶清欢 2022-05-01 20:02:15 +08:00
commit 83dbdb7ecb
4 changed files with 43 additions and 0 deletions

22
.gitignore vendored Normal file
View File

@ -0,0 +1,22 @@
# Created by .ignore support plugin (hsz.mobi)
### Go template
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
*.xlsx
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
.idea
.vscode
mail_test.go

14
curl/define.go Normal file
View File

@ -0,0 +1,14 @@
// Package curl 基础请求库
//
// Author: go_developer@163.com<白茶清欢>
//
// Description: 基础常量定义
//
// File: define.go
//
// Version: 1.0.0
//
// Date: 2022/05/01 19:56:48
package curl
const ()

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module git.zhangdeman.cn/zhangdeman/httpclient
go 1.17
require github.com/ddliu/go-httpclient v0.6.9 // indirect

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/ddliu/go-httpclient v0.6.9 h1:/3hsBVpcgCJwqm1dkVlnAJ9NWuYInbRc+i9FyUXX/LE=
github.com/ddliu/go-httpclient v0.6.9/go.mod h1:zM9P0OxV4OGGz1pt/ibuj0ooX2SWH9a6MvXZLbT0JMc=