├── README.md ├── database-mysql.go ├── database-oci8.go ├── database-pg.go ├── go.mod ├── go.sum ├── main.go ├── static └── style.css └── templates └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/README.md -------------------------------------------------------------------------------- /database-mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/database-mysql.go -------------------------------------------------------------------------------- /database-oci8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/database-oci8.go -------------------------------------------------------------------------------- /database-pg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/database-pg.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/main.go -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | .todo-done { 2 | color: gray; 3 | } 4 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/todo-webapp/HEAD/templates/index.html --------------------------------------------------------------------------------