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