require "json" module Guff module API module TagAPI private def do_tag_get_tags( context : HTTP::Server::Context, args : Hash(String, String) ) [{foo: "bar"}, {foo: "asdf"}].to_json end private def do_tag_remove_tags( context : HTTP::Server::Context, args : Hash(String, String) ) true.to_json end end end end