8 lines
152 B
Python
8 lines
152 B
Python
#!/usr/bin/env python
|
|
from __future__ import annotations
|
|
|
|
from backlog import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main(["validate"]))
|