Skip to content
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

Replace the default port with 8080 #352

Merged
merged 4 commits into from
Jan 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: windows support
  • Loading branch information
sansyrox committed Jan 19, 2023
commit 2416bab19c73bf048ccaea4c947ec09444c69538
4 changes: 3 additions & 1 deletion robyn/processpool.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import asyncio
import sys
from typing import Dict, List, Tuple
from typing import Dict, Tuple, List

from robyn.events import Events
from robyn.robyn import FunctionInfo, Server, SocketHeld
from robyn.router import MiddlewareRoute, Route
from robyn.types import Directory, Header
from robyn.ws import WS
from robyn.types import Directory, Header



def initialize_event_loop():
Expand Down
1 change: 1 addition & 0 deletions robyn/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ class Header:

def as_list(self):
return [self.key, self.val]