fs_resolver_plugin 0.1.0

TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import { Module } into FileSystem from "ens/fs.polywrap.eth"

type Module {
  tryResolveUri(
    authority: String!
    path: String!
  ): MaybeUriOrManifest

  getFile(
    path: String!
  ): Bytes
}

type MaybeUriOrManifest {
  uri: String
  manifest: Bytes
}