# 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