File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
scaffolding/instanced-cloudevents/service Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Python HTTP Function
2
2
3
3
Welcome to your new Python Function! A minimal Function implementation can
4
- be found in func.py.
4
+ be found in ./function/ func.py.
5
5
6
6
For more, see [ the complete documentation] ( 'https://github.com/knative/func/tree/main/docs' )
Original file line number Diff line number Diff line change
1
+ schema_version : 0.0.1 # The version for manifest.yaml schema
2
+
3
+ # The name used for this language pack repository when referenced
4
+ # in the UX, and its version
5
+ name : default
6
+ version : 0.0.1
Original file line number Diff line number Diff line change 17
17
`source $(poetry env info --path)/bin/activate`
18
18
"""
19
19
import logging
20
- from func_python .http import serve
20
+ from func_python .cloudevent import serve
21
21
22
22
logging .basicConfig (level = logging .INFO )
23
23
You can’t perform that action at this time.
0 commit comments