
2. Added router to Route /datacenters/ and /services/ URLs 3. Added stubs for windc/core/api. 4. Fixed start-up process for service ------------------------------------------------- Now it is working service which will reply for curl http://localhost:8181/tenant_id/datacenters/ curl http://localhost:8181/tenant_id/datacenters/dc_id/services curl http://localhost:8181/tenant_id/datacenters/dc_id/services/service_id
6 lines
116 B
Python
6 lines
116 B
Python
#!/usr/bin/env python
|
|
from migrate.versioning.shell import main
|
|
|
|
if __name__ == '__main__':
|
|
main(debug='False')
|