Static files
Files in the static directory of an Atmo project will be copied into the Runnable Bundle by subo. Those files can then be accessed by Runnables. The directory is mounted as a sandboxed read-only filesystem.
- Rust
- AssemblyScript 🧪
- Swift 🧪
In Rust these methods are available under the file module:
# Use the "file" module
use suborbital::file;
# Invoke the "Get Static" method
file::get_static(…)
Not yet supported
In Swift these methods are available individually:
// Invoke the "Get Static" method
Suborbital.GetStaticFile(…)
The following namespace methods are available:
Get Static​
Retrieves the contents of the static file with the given name:
- Rust
- AssemblyScript 🧪
- Swift 🧪
pub fn get_static(name: &str) -> Result<Vec<u8>, RunErr>
Not yet supported
public func GetStaticFile(name: String) -> String