13 lines
315 B
V
13 lines
315 B
V
module main
|
|
|
|
fn main() {
|
|
println(embedfs)
|
|
$if bare_map ? {
|
|
json_file := embedfs['assets/example.json'] or { EmbedFile{} }
|
|
println(json_file.data.to_string().trim_space())
|
|
} $else {
|
|
json_file := embedfs.files['assets/example.json'] or { EmbedFile{} }
|
|
println(json_file.data.to_string().trim_space())
|
|
}
|
|
}
|