#!/usr/bin/python3.13

try:
    import module_helper  # noqa: F401
except ImportError:
    # if oscfs is normally installed then this is okay
    pass
import oscfs.fs
import oscfs.misc

the_fs = oscfs.fs.OscFs()
the_fs.run()
