Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add go.mod #351

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 56 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,58 @@
## Special files
_*
.*
*~
*.lock

!.gitignore

## Compiled source
_obj/
_test/
target/

[568vq].out
*.[568vq]

*.[ao]
*.dll
*.so

*.cgo?.*
*.exe
*.prof
*.test

_testmain.go
go.sum

## Packages
# It's better to unpack these files and commit the raw source.
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

## Data
*.bin
Icon?

## Logs and databases
*.db
*.log
*.sqlite
#*.sql

## Projects

*.sublime-project
*.sublime-workspace

## * * *

testdata/conf_out.ini
ini.sublime-project
ini.sublime-workspace
testdata/conf_reflect.ini
.idea
/.vscode
.DS_Store
11 changes: 11 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/go-ini/ini

go 1.22.0

require github.com/stretchr/testify v1.9.0

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)