diff options
author | Melody Horn <melody@boringcactus.com> | 2021-12-24 15:34:12 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-12-24 15:34:12 -0700 |
commit | c6d12d80babd9f4bd5692cf74ab9d6e9278859d1 (patch) | |
tree | 734965c61f70d08614cff1340ba279b6b11ba88c /tests/config-example/narchttpd.rhai | |
parent | f79b75710167088e2031a82a94a8d127fbb16a1f (diff) | |
download | narchttpd-c6d12d80babd9f4bd5692cf74ab9d6e9278859d1.tar.gz narchttpd-c6d12d80babd9f4bd5692cf74ab9d6e9278859d1.zip |
give up on functions-from-config
i'm not sure why but those appear to not work well
Diffstat (limited to 'tests/config-example/narchttpd.rhai')
-rw-r--r-- | tests/config-example/narchttpd.rhai | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/config-example/narchttpd.rhai b/tests/config-example/narchttpd.rhai index 7c9185d..713dc3e 100644 --- a/tests/config-example/narchttpd.rhai +++ b/tests/config-example/narchttpd.rhai @@ -14,7 +14,3 @@ domains["dynamic.test"] = proxy_child(#{ in_dir: "./dynamic.test", port: 6970, }); -domains["function.test"] = |request| #{ - status: 200, - body: "OK", -}; |