```ts interface Secret { tag: "Secret", read: Fn<D, AsyncEither<E, A>>, } ``` A fn that returns an async computation (thus can fetch from AWS SecretManager, or Vault, etc.) Should mask output when printing.
A fn that returns an async computation (thus can fetch from AWS SecretManager, or Vault, etc.)
Should mask output when printing.