mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-11-29 03:43:51 +03:00
13 lines
250 B
C
13 lines
250 B
C
|
#pragma once
|
||
|
|
||
|
#include "furi.h"
|
||
|
#include "tests/test_index.h"
|
||
|
|
||
|
typedef struct {
|
||
|
FlipperApplication app;
|
||
|
const char* name;
|
||
|
} FlipperStartupApp;
|
||
|
|
||
|
const FlipperStartupApp FLIPPER_STARTUP[] = {
|
||
|
{.app = flipper_test_app, .name = "test app"}
|
||
|
};
|