blob: d36afe17f52f88dee796278bed7e677e828a5a74 [file] [log] [blame]
Philip Josephf9c72222016-10-02 23:31:02 +05301#!/usr/bin/env python3
2
3# Load modules from $CHARM_DIR/lib
4import sys
5sys.path.append('lib')
6
7from charms.layer import basic
8basic.bootstrap_charm_deps()
9basic.init_config_states()
10
11
12# This will load and run the appropriate @hook and other decorated
13# handlers from $CHARM_DIR/reactive, $CHARM_DIR/hooks/reactive,
14# and $CHARM_DIR/hooks/relations.
15#
16# See https://jujucharms.com/docs/stable/authors-charm-building
17# for more information on this pattern.
18from charms.reactive import main
19main()