├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── assets └── image-demo.png ├── client.go ├── log.li ├── logfile.go ├── main.go └── tmpls └── log.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.txt 3 | web-tail 4 | .DS_Store 5 | bin/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/README.md -------------------------------------------------------------------------------- /assets/image-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/assets/image-demo.png -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/client.go -------------------------------------------------------------------------------- /log.li: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/log.li -------------------------------------------------------------------------------- /logfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/logfile.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/main.go -------------------------------------------------------------------------------- /tmpls/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plholx/web-tail/HEAD/tmpls/log.html --------------------------------------------------------------------------------