Documentation
1
2
3
4
5
6
7
package examples:basic-flat-map;
interface basic-flat-map-service {
    flat-map-fn: func(input: string) -> result<list<string>,string>;
}
world basic-flat-map-world {
    export basic-flat-map-service;    
}