adventOfCode/run
2023-11-27 23:16:42 +00:00

27 lines
No EOL
476 B
Python

#!/usr/bin/env python3
import fire
# Commands
# - init
# - run
# - bench (later)
class CLI(object):
@staticmethod
def init(year: int, day: int):
"""
Initialise a day's AoC challenge
"""
raise NotImplementedError("init unimplemented")
@staticmethod
def run(fpath: str):
"""
Run a day's code
"""
raise NotImplementedError("run unimplemented")
if __name__ == "__main__":
fire.Fire(CLI)