mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
18 lines
474 B
Plaintext
18 lines
474 B
Plaintext
App(
|
|
appid="caesar_cipher",
|
|
name="Caesar Cipher",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="caesar_cipher_app",
|
|
cdefines=["APP_CAESAR_CIPHER"],
|
|
requires=[
|
|
"gui",
|
|
],
|
|
stack_size=2 * 1024,
|
|
fap_icon="caesar_cipher_icon.png",
|
|
fap_category="Tools",
|
|
fap_author="@panki27",
|
|
fap_weburl="https://github.com/panki27/caesar-cipher",
|
|
fap_version="1.0",
|
|
fap_description="Encrypt and decrypt text using Caesar Cipher",
|
|
)
|