]> mj.ucw.cz Git - eval.git/blob - t/moe/config.py
3075d8036989a461f47f822499bcec5a4c6a1fc2
[eval.git] / t / moe / config.py
1 #!/usr/bin/env python
2
3 class MoeConfig:
4     """Moe configuration file."""
5
6     def __init__(self):
7         cfg = { 'XYZZY' : 'brum' }
8
9 class MoeConfigStack:
10     """Stack of configuration files."""
11
12     def __init__(self):
13         stk = []