diff --git a/RetroUFO.py b/RetroUFO.py new file mode 100644 index 0000000..0bf3312 --- /dev/null +++ b/RetroUFO.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +""" +Grabs the latest version of every libretro core from the build bot. +""" + +__author__ = "Melon Bread" +__version__ = "0.1.0" +__license__ = "MIT" + + +def main(): + pass + + +if __name__ == "__main__": + """ This is executed when run from the command line """ + main()