MCPcopy
hub / github.com/Zie619/n8n-workflows / create_static_directory

Function create_static_directory

api_server.py:767–771  ·  view source on GitHub ↗

Create static directory if it doesn't exist.

()

Source from the content-addressed store, hash-verified

765
766
767def create_static_directory():
768 """Create static directory if it doesn't exist."""
769 static_dir = Path("static")
770 static_dir.mkdir(exist_ok=True)
771 return static_dir
772
773
774def run_server(host: str = "127.0.0.1", port: int = 8000, reload: bool = False):

Callers 1

run_serverFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected