chore(format): formatted the code
Build and Bundle Gleam App / format (push) Successful in 9s
Build and Bundle Gleam App / build-and-bundle (push) Successful in 43s

This commit is contained in:
2026-07-10 00:26:22 +02:00
parent 9487f159eb
commit f85a5c3cda
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
//// The Main function definitions //// The Main function definitions
import luma/definition
import gleam/io import gleam/io
import gleam/json import gleam/json
import luma/definition
import luma/parser import luma/parser
/// example main function that parses some text into json /// example main function that parses some text into json
pub fn main() ->Nil{ pub fn main() -> Nil {
io.print("This is a debug function only used for testing") io.print("This is a debug function only used for testing")
io.print(parse_to_json("!2 @3 important >1 quoted")) io.print(parse_to_json("!2 @3 important >1 quoted"))
} }
+1 -1
View File
@@ -1,9 +1,9 @@
import luma/definition
import gleam/dict import gleam/dict
import gleam/int import gleam/int
import gleam/list import gleam/list
import gleam/result import gleam/result
import gleam/string import gleam/string
import luma/definition
import luma/mode import luma/mode
/// main parse function /// main parse function