AppConfig
AppConfig |
Purpose
Insight application configuration decorator. An Insight application class must be decorated with this decorator.
Example
Example of a minimal Insight app with an app config
>>> @xi.AppConfig(name="Quick Start with Python", ... version=xi.AppVersion(1, 0, 0)) ... class InsightApp(xi.AppBase): ... pass