# -*- coding: utf-8 -*- from views import * class MythSystemRole(object): pass class MythRemote(object): pass class MythTheme(object): pass myth_systemroles = simple_mapped_counted_view('MYTH_SYSTEMROLE', old_hosts.c.myth_systemrole, MythSystemRole, desc=True) myth_remotes = simple_mapped_counted_view('MYTH_REMOTE', old_hosts.c.myth_remote, MythRemote, desc=True) myth_themes = simple_mapped_counted_view('MYTHTHEME', old_hosts.c.myth_theme, MythTheme, desc=True)