├── .github ├── README.md └── workflows │ └── go.yml ├── fe.go └── go.mod /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlandau/tftp2httpd/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlandau/tftp2httpd/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /fe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlandau/tftp2httpd/HEAD/fe.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hlandau/tftp2httpd 2 | 3 | go 1.19 4 | --------------------------------------------------------------------------------