gitextract_iui_xs3o/ ├── .envrc ├── .github/ │ └── workflows/ │ └── nix.yaml ├── .gitignore ├── LICENSE ├── README.md ├── cmd/ │ ├── tclip/ │ │ └── main.go │ └── tclipd/ │ ├── main.go │ ├── schema.sql │ ├── static/ │ │ ├── css/ │ │ │ ├── base.css │ │ │ ├── font-files/ │ │ │ │ ├── LICENSE.txt │ │ │ │ └── inter.css │ │ │ ├── normalize.css │ │ │ ├── prism-dark.css │ │ │ └── prism.css │ │ └── js/ │ │ └── prism.js │ └── tmpl/ │ ├── base.html │ ├── create.html │ ├── error.html │ ├── fancypost.html │ ├── help.html │ ├── listpaste.html │ ├── nopastes.html │ ├── notfound.html │ ├── pastecreated.html │ ├── publicindex.html │ └── showpaste.html ├── contrib/ │ └── tclip.el ├── flake.nix ├── go.mod ├── go.sum ├── package.json ├── run/ │ └── portable-service/ │ └── tclip.service.in └── tailwind.config.js