Add project structure and hello_world function
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
def hello_world() -> str:
|
||||||
|
return "Hello, World!"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
from src.main import hello_world
|
||||||
|
|
||||||
|
|
||||||
|
def test_hello_world():
|
||||||
|
assert hello_world() == "Hello, World!"
|
||||||
Reference in New Issue
Block a user