├── .gitattributes ├── README.md ├── main.go └── static └── home.tpl /.gitattributes: -------------------------------------------------------------------------------- 1 | static/* linguist-vendored 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevsaddam/todoapp/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevsaddam/todoapp/HEAD/main.go -------------------------------------------------------------------------------- /static/home.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevsaddam/todoapp/HEAD/static/home.tpl --------------------------------------------------------------------------------