tornado 实践 - 目录结构

.

├── README.md

└── store_management

    ├── Session.vim

    ├── auth

    │   ├── __init__.py

    │   ├── views.py

    ├── base

    │   ├── __init__.py

    │   ├── views.py

    ├── settings.py

    ├── start.py

    ├── templates

    │   ├── auth

    │   │   ├── login.html

    │   │   └── register.html

    │   └── main.html

    ├── url.py

 

你可能感兴趣的:(tornado)