How to use flow.from_source where source is github for deploing several flows?

I want to deploy 2 flows from github, do I need to to flow1 = flow.from_source(
source=GitRepository(
url=“https://github.com/…”,
branch=“main”,
credentials={“access_token”: os.getenv(“GITHUB_TOKEN”)},
),
entrypoint=“main.py:data_flow1”,
) low2 = flow.from_source(
source=GitRepository(
url=“https://github.com/…”,
branch=“main”,
credentials={“access_token”: os.getenv(“GITHUB_TOKEN”)},
),
entrypoint=“main.py:data_flow2”,
)
serve([flo1, flow2])?