screen exit handler
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful

This commit is contained in:
2026-03-17 23:33:13 +01:00
parent 30c894c2f0
commit 883ad5fcbf
3 changed files with 11 additions and 4 deletions

View File

@@ -21,6 +21,9 @@ function Screen.register(screen_data)
end
if not screen_data.init then
screen_data.init = function() end
end
if not screen_data.exit then
screen_data.exit = function() end
end
if not screen_data.update then
screen_data.update = function() end