├── .gitignore ├── Advent of Code Downloader.sublime-project ├── aocdl ├── .gitignore ├── config.go └── main.go ├── go.mod ├── license.txt └── readme.markdown /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | 3 | *.sublime-workspace 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /Advent of Code Downloader.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/Advent of Code Downloader.sublime-project -------------------------------------------------------------------------------- /aocdl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/aocdl/.gitignore -------------------------------------------------------------------------------- /aocdl/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/aocdl/config.go -------------------------------------------------------------------------------- /aocdl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/aocdl/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/GreenLightning/advent-of-code-downloader 2 | 3 | go 1.25 4 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/license.txt -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenLightning/advent-of-code-downloader/HEAD/readme.markdown --------------------------------------------------------------------------------