mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
18 lines
426 B
Text
18 lines
426 B
Text
App(
|
|
appid="storage_move_to_sd",
|
|
name="StorageMoveToSd",
|
|
apptype=FlipperAppType.SYSTEM,
|
|
entry_point="storage_move_to_sd_app",
|
|
requires=["gui", "storage"],
|
|
provides=["storage_move_to_sd_start"],
|
|
stack_size=2 * 1024,
|
|
order=30,
|
|
)
|
|
|
|
App(
|
|
appid="storage_move_to_sd_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="storage_move_to_sd_start",
|
|
requires=["storage"],
|
|
order=120,
|
|
)
|