This commit is contained in:
xenia 2023-09-03 12:25:32 +02:00
parent 5103fc0996
commit 3216656638
2 changed files with 3 additions and 6 deletions

View File

@ -22,6 +22,9 @@
mkdir -p ./artifacts
${agda}/bin/agda --compile-dir ./artifacts --compile "''${1:-./Main.agda}"
}
clean() {
fd -I '.agdai|artifacts' --exec rm -rf
}
'';
henttp = pkgs.stdenv.mkDerivation {

View File

@ -21,12 +21,6 @@ open import NonEmpty
open import Parse-HTTP
import UTF-8
parse-digit : [ Parser Byte ]
parse-digit = (\ b b .value <ᵇ 58) <?> any₁
parse-thing : [ Parser (List⁺ Byte) ]
parse-thing = many parse-digit -- (\ (a , b) → a ∷⁺ [ b ]⁺ ) <$> (parse-digit <&> enbox parse-digit)
200-ok : String.String List Byte List Byte
200-ok content-type content = UTF-8.encode-string (String.toList (headers String.++ "\r\n\r\n")) ++ content
where