diff --git a/main.py b/main.py index db68ef9..0ae0989 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ The tool fetches the odds from The Odds API (https://the-odds-api.com/) and compares the odds at different bookmakers to each other in order to determine whether there are profitable and risk-free bets available.""" -from logic import get_arbitrage_opportunities +from src.logic import get_arbitrage_opportunities import os import argparse from dotenv import load_dotenv diff --git a/logic.py b/src/logic.py similarity index 100% rename from logic.py rename to src/logic.py