app: Update module docstring

master
Dustin 2016-07-10 19:54:14 -05:00
parent 44a28fda68
commit 83971013d0
1 changed files with 9 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# Copyright 2011, 2012, 2014, 2015 Dustin C. Hatch
# Copyright 2011, 2012, 2014-2016 Dustin C. Hatch
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -13,12 +13,17 @@
# limitations under the License.
'''Module milla.app
Please give me a docstring!
The :py:class:`BaseApplication` class is the core of the Milla
framework. This class implements a WSGI application that dispatches
requests to callables based on their URL-path.
Most applications can use :py:class:`Application` directly, without
creating a sub-class. For advanced use, applications can define a
sub-class of :py:class:`BaseApplication` and customize the behavior of
the framework.
:Created: Mar 26, 2011
:Author: dustin
:Updated: $Date$
:Updater: $Author$
'''
from milla import util