b74b146f93e798c18c645a5302fa1acd6921312c
[osm/riftware.git] /
1 #!/usr/bin/env python3
2
3 # Load modules from $CHARM_DIR/lib
4 import sys
5 sys.path.append('lib')
6
7 from charms.bootstrap import bootstrap_charm_deps
8 bootstrap_charm_deps()
9
10
11 # This will load and run the appropriate @hook and other decorated
12 # handlers from $CHARM_DIR/reactive, $CHARM_DIR/hooks/reactive,
13 # and $CHARM_DIR/hooks/relations.
14 #
15 # See https://jujucharms.com/docs/stable/authors-charm-building
16 # for more information on this pattern.
17 from charms.reactive import main
18 main()