harn-modules 0.7.55

Cross-file module graph and import resolution utilities for Harn
Documentation
1
2
3
4
5
6
7
// std/files — provider file upload helpers.
//
// Import with: import "std/files"
/** Upload a local file to a provider Files API and return its reusable file_id. */
pub fn upload(path: string, provider: string) -> string {
  return __files_upload(path, provider)
}