mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-08 22:35:15 +08:00
13 lines
195 B
Python
13 lines
195 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Onename API
|
|
Copyright 2014 Halfmoon Labs, Inc.
|
|
~~~~~
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
v1auth = Blueprint('v1auth', __name__, url_prefix='')
|
|
|
|
import views
|