-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rename the http folder to a better name, than python #24
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
name = "func-python" | ||
version = "0.2.0" | ||
description = "Knative Functions Python Middleware" | ||
packages = [ | ||
{ include = "func_http", from = "src" }, | ||
] | ||
|
||
Comment on lines
+5
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason the folder is named |
||
authors = ["Luke Kingland <[email protected]>"] | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
import signal | ||
import threading | ||
import time | ||
from func_python.http import serve | ||
from func_http.http import serve | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With an |
||
|
||
logging.basicConfig(level=logging.INFO) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking now at this I see that
func_http.http
is a bit unfortunate as well 😅