mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-08 02:08:31 +08:00
18 lines
412 B
Python
18 lines
412 B
Python
"""
|
|
Resolver
|
|
~~~~~
|
|
:copyright: (c) 2014-2016 by Halfmoon Labs, Inc.
|
|
:copyright: (c) 2016 blockstack.org
|
|
:license: MIT, see LICENSE for more details.
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
|
|
#hack around absolute paths
|
|
current_dir = os.path.abspath(os.path.dirname(__file__))
|
|
parent_dir = os.path.abspath(current_dir + "/../")
|
|
|
|
sys.path.insert(0, parent_dir)
|
|
|
|
from resolver.server import app as application |