From 18b3290b23942c490f6e351b6b3637f661217cd9 Mon Sep 17 00:00:00 2001 From: sose Date: Fri, 18 Oct 2019 00:47:12 -0400 Subject: [PATCH] Update 'README.md' --- README.md | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 296074f..57503ee 100644 --- a/README.md +++ b/README.md @@ -41,25 +41,15 @@ currently there is: - **listening** - a backend is a shell script with a `listen` function - this function is expected to continuously output post data it receives like so: -``` -New post - -board: - -parent: - -user: - -title: - -content:<content> - -image_name:<name of image> - -image content:<base64 encoded image> - -End new post -``` + New post + board:<board name> + parent:<parent of post> + user:<user> + title:<title> + content:<content> + image_name:<name of image> + image content:<base64 encoded image> + End new post - as long as the backend has a listen function that outputs data to stdout like this, shi doesn't care where it comes from. - **db**