OSDN Git Service

add get_gm_public_key
[bytom/bytom-kit.git] / app / api / __init__.py
index 1a20e3d..314892a 100644 (file)
@@ -26,6 +26,8 @@ from app.api.resources import Decode_Raw_Transaction
 from app.api.resources import Get_Gm_Root_Xprv
 from app.api.resources import Get_Gm_Xpub
 from app.api.resources import Get_Gm_Xprv
+from app.api.resources import Get_Gm_Public_Key
+
 
 blueprint = Blueprint('api', __name__, url_prefix='/api/v1')
 api = Api(blueprint)
@@ -54,4 +56,5 @@ api.add_resource(Create_New_Address, '/create_new_address')
 api.add_resource(Decode_Raw_Transaction, '/decode_raw_transaction')
 api.add_resource(Get_Gm_Root_Xprv, '/get_gm_root_xprv')
 api.add_resource(Get_Gm_Xpub, '/get_gm_xpub')
-api.add_resource(Get_Gm_Xprv, '/get_gm_xprv')
\ No newline at end of file
+api.add_resource(Get_Gm_Xprv, '/get_gm_xprv')
+api.add_resource(Get_Gm_Public_Key, '/get_gm_public_key')
\ No newline at end of file