From 7b5c804ec8fce89baa67d2bf301bb7a1e77d50b9 Mon Sep 17 00:00:00 2001 From: Matthew Frost Date: Sat, 18 Nov 2023 16:16:46 +0100 Subject: [PATCH] remove crap --- label.html | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ main.go | 1 + 2 files changed, 91 insertions(+) create mode 100644 label.html diff --git a/label.html b/label.html new file mode 100644 index 0000000..b17fed4 --- /dev/null +++ b/label.html @@ -0,0 +1,90 @@ + + + + + Create DNH Label + + + +

Create DNH Label

+
+ + +

+ +
+ + + + \ No newline at end of file diff --git a/main.go b/main.go index e0e72a6..af509f6 100644 --- a/main.go +++ b/main.go @@ -122,4 +122,5 @@ func createDnhLabelHandler(w http.ResponseWriter, r *http.Request, ep *escpos.Es ep.WriteRaw([]byte{12}) // FF: in Page mode, prints all the data in the print buffer collectively and switches from Page mode to Standard mode. ep.Cut() ep.End() + w.WriteHeader(http.StatusOK) } \ No newline at end of file