The backend of a gist server written in Rust
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627
  1. <html>
  2. <head>
  3. <title>bngl.ws</title>
  4. <style>
  5. .container {
  6. margin: auto;
  7. max-width: 500px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <div class="container">
  13. <h1>bngl.ws</h1>
  14. <p>
  15. bngl.ws is a pastebin service that you can access from the command
  16. line. If you have
  17. <a href="https://doc.rust-lang.org/cargo/getting-started/installation.html" target="_blank">
  18. cargo</a> installed, you can install the CLI client by cloning the
  19. <a href="https://git.sr.ht/~simulacrumparty/bnglws-client" target="_blank">client repo</a>
  20. and running
  21. <pre>cargo install --path .</pre>
  22. Then, you can create snippets by running something like
  23. <pre>echo 'Hello world' | bngl new --name "First snippet"</pre>
  24. </p>
  25. </div>
  26. </body>
  27. </html>