#!/usr/bin/env python3 """ Nike — Football Data Platform Launch with: python run.py """ import sys import os # Ensure the project root is on sys.path sys.path.insert(0, os.path.dirname(__file__)) from nike.server import main if __name__ == "__main__": main()