mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
14 lines
338 B
Lua
14 lines
338 B
Lua
-- Info on the data lifecycle and how we use it: https://github.com/Refactorio/RedMew/wiki/The-data-lifecycle
|
|
-- Non-applicable stages are commented out.
|
|
_STAGE = {
|
|
--settings = 1,
|
|
--data = 2,
|
|
--migration = 3,
|
|
control = 4,
|
|
init = 5,
|
|
load = 6,
|
|
--config_change = 7,
|
|
runtime = 8
|
|
}
|
|
|
|
_LIFECYCLE = _STAGE.control |