#!/usr/bin/env python3
# -*- coding: utf-8 -*-


class Namespace(object):
    def __init__(self):
        self.funcs = {}
        self.consts = {}
