File size: 363 Bytes
bf237c2 | 1 2 3 4 5 6 7 8 9 10 | # This file is required for Hugging Face Spaces
# The actual app runs on Node.js via Dockerfile
import os
import subprocess
import sys
if __name__ == "__main__":
# This is just a placeholder - the real app runs via Dockerfile
print("Luna OCR is running via Node.js server...")
print("Check the Dockerfile for the actual application startup") |