#!/bin/bash
# Fetches list of all SSL certificates
# 
# 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.
# {
#	"mydomain.com": { "private_key": "", "certificate": "", "cabundle": "" },
#	"mydomain2.com": { "private_key": "", "certificate": "", "cabundle": "" },
# }
#
# On error write your error to stderr. 
# exit with code 1
# e.g. >&2 echo "Failed fetching SSL certificates" && exit 1

echo '{}'
exit 0