require "json" module Guff module API module DirAPI private def do_dir_add( context : HTTP::Server::Context, args : Hash(String, String) ) # TODO {ok: true}.to_json end private def do_dir_remove( context : HTTP::Server::Context, args : Hash(String, String) ) # TODO {ok: true}.to_json end end end end