├── .gitignore ├── LICENSE ├── README.md ├── autocomplete.go ├── helpers.go ├── main.go ├── screencast.gif └── types.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/README.md -------------------------------------------------------------------------------- /autocomplete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/autocomplete.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/helpers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/main.go -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/screencast.gif -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiatjaf/rel/HEAD/types.go --------------------------------------------------------------------------------