7 lines
146 B
Python
7 lines
146 B
Python
"""Convenience entry-point for running the reactor simulation."""
|
|
|
|
from reactor_sim.simulation import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|