#!/bin/bash
# Fetches the account config directory
# 
# Arguments:
ACCOUNT=$1

# Successful Output can be valid json (in the first line of the output) or no output at all if no data.
# exit with code 0
# e.g.
# {
#	"path": "/absolute/path/to/the/config/directory"
# }
#
# On error write your error to stderr. 
# exit with code 1
# e.g. >&2 echo "Failed fetching account config directory" && exit 1

echo '{}'
exit 0