#!/usr/bin/env python
# Copyright 2011 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

import json
import sys

from devportalbinary.binary import BinaryBackend

def main():
    json.dump(BinaryBackend().want(), sys.stdout)


if __name__ == '__main__':
    main()
