#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4 nu

from whost.ui.home import display_home

def main():
    display_home()


if __name__ == '__main__':
    main()
