summaryrefslogtreecommitdiff
path: root/foundry/interfaces.py
blob: 47177785390f4198f0a807a909e237be81929d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# vim: set filencoding=utf8
"""
Foundry Interfaces

@author: Mike Crute (mcrute@gmail.com)
@organization: SoftGroup Interactive, Inc.
@date: May 02, 2010
"""


class RepositoryProvider:
    """
    Repository providers return an instance of a repository.
    """

    def get(self, repo_path=''):
        pass


class TemplateRenderer:

    def render(self, template, *args, **kwargs):
        pass