├── .gitignore ├── README.md ├── handler.go ├── main └── main.go └── students ├── README.md ├── baltuky ├── redirect.yaml └── src │ ├── main.go │ └── urlshort │ └── handler.go ├── dennisvis ├── main.go ├── paths.json ├── paths.yml └── urlshort │ └── handler.go ├── dimdiden ├── main.go ├── map.json ├── map.yaml ├── my.db └── urlshort │ ├── bold.go │ ├── handler.go │ └── pair.go ├── emrekp └── handler_impls.go ├── hackeryarn ├── hackeryarn ├── main.go ├── main_test.go ├── urls.json ├── urls.yaml └── urlshort │ ├── handler.go │ └── handler_test.go ├── kalexmills ├── main │ └── main.go └── urlshort.go ├── latentgenius ├── handler.go └── main │ └── main.go ├── liikt ├── handler.go ├── main │ └── main.go └── storage │ ├── map.json │ └── map.yml ├── rnbdev ├── handler.go └── main.go └── teimurjan ├── handler.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/README.md -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/handler.go -------------------------------------------------------------------------------- /main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/main/main.go -------------------------------------------------------------------------------- /students/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/README.md -------------------------------------------------------------------------------- /students/baltuky/redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/baltuky/redirect.yaml -------------------------------------------------------------------------------- /students/baltuky/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/baltuky/src/main.go -------------------------------------------------------------------------------- /students/baltuky/src/urlshort/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/baltuky/src/urlshort/handler.go -------------------------------------------------------------------------------- /students/dennisvis/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dennisvis/main.go -------------------------------------------------------------------------------- /students/dennisvis/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dennisvis/paths.json -------------------------------------------------------------------------------- /students/dennisvis/paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dennisvis/paths.yml -------------------------------------------------------------------------------- /students/dennisvis/urlshort/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dennisvis/urlshort/handler.go -------------------------------------------------------------------------------- /students/dimdiden/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/main.go -------------------------------------------------------------------------------- /students/dimdiden/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/map.json -------------------------------------------------------------------------------- /students/dimdiden/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/map.yaml -------------------------------------------------------------------------------- /students/dimdiden/my.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/my.db -------------------------------------------------------------------------------- /students/dimdiden/urlshort/bold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/urlshort/bold.go -------------------------------------------------------------------------------- /students/dimdiden/urlshort/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/urlshort/handler.go -------------------------------------------------------------------------------- /students/dimdiden/urlshort/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/dimdiden/urlshort/pair.go -------------------------------------------------------------------------------- /students/emrekp/handler_impls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/emrekp/handler_impls.go -------------------------------------------------------------------------------- /students/hackeryarn/hackeryarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/hackeryarn -------------------------------------------------------------------------------- /students/hackeryarn/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/main.go -------------------------------------------------------------------------------- /students/hackeryarn/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/main_test.go -------------------------------------------------------------------------------- /students/hackeryarn/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/urls.json -------------------------------------------------------------------------------- /students/hackeryarn/urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/urls.yaml -------------------------------------------------------------------------------- /students/hackeryarn/urlshort/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/urlshort/handler.go -------------------------------------------------------------------------------- /students/hackeryarn/urlshort/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/hackeryarn/urlshort/handler_test.go -------------------------------------------------------------------------------- /students/kalexmills/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/kalexmills/main/main.go -------------------------------------------------------------------------------- /students/kalexmills/urlshort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/kalexmills/urlshort.go -------------------------------------------------------------------------------- /students/latentgenius/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/latentgenius/handler.go -------------------------------------------------------------------------------- /students/latentgenius/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/latentgenius/main/main.go -------------------------------------------------------------------------------- /students/liikt/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/liikt/handler.go -------------------------------------------------------------------------------- /students/liikt/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/liikt/main/main.go -------------------------------------------------------------------------------- /students/liikt/storage/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/liikt/storage/map.json -------------------------------------------------------------------------------- /students/liikt/storage/map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/liikt/storage/map.yml -------------------------------------------------------------------------------- /students/rnbdev/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/rnbdev/handler.go -------------------------------------------------------------------------------- /students/rnbdev/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/rnbdev/main.go -------------------------------------------------------------------------------- /students/teimurjan/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/teimurjan/handler.go -------------------------------------------------------------------------------- /students/teimurjan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gophercises/urlshort/HEAD/students/teimurjan/main.go --------------------------------------------------------------------------------