Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RECIRCLE
/
interface-openstack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cbc58970
authored
6 years ago
by
Belákovics Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Basic structure
parent
1bfcb499
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
0 deletions
+15
-0
Pipfile
+3
-0
Pipfile.lock
+0
-0
interface-openstack/__init__.py
+0
-0
interface-openstack/client_interface/__init__.py
+0
-0
interface-openstack/communication_layer/__init__.py
+0
-0
interface-openstack/main.py
+12
-0
interface-openstack/openstack_implementation/__init__.py
+0
-0
No files found.
Pipfile
View file @
cbc58970
...
@@ -6,6 +6,9 @@ verify_ssl = true
...
@@ -6,6 +6,9 @@ verify_ssl = true
[dev-packages]
[dev-packages]
[packages]
[packages]
aiohttp = "*"
cchardet = "*"
aiodns = "*"
[requires]
[requires]
python_version = "3.6"
python_version = "3.6"
This diff is collapsed.
Click to expand it.
Pipfile.lock
View file @
cbc58970
This diff is collapsed.
Click to expand it.
interface-openstack/__init__.py
0 → 100644
View file @
cbc58970
This diff is collapsed.
Click to expand it.
interface-openstack/client_interface/__init__.py
0 → 100644
View file @
cbc58970
This diff is collapsed.
Click to expand it.
interface-openstack/communication_layer/__init__.py
0 → 100644
View file @
cbc58970
This diff is collapsed.
Click to expand it.
interface-openstack/main.py
0 → 100644
View file @
cbc58970
from
aiohttp
import
web
routes
=
web
.
RouteTableDef
()
@routes.get
(
'/'
)
async
def
hello
(
request
):
return
web
.
Response
(
text
=
"Hello, world"
)
app
=
web
.
Application
()
app
.
add_routes
(
routes
)
web
.
run_app
(
app
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
interface-openstack/openstack_implementation/__init__.py
0 → 100644
View file @
cbc58970
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment