1.3.1 • Published 2 years ago

use-services v1.3.1

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

use-services

Use services gracefully

Get Started

import useServices from "use-services";
import * as Echo from "@use-services/echo";

const options = {
  settings: {
    init: Echo.init,
    args: {},
  } as Echo.Option<typeof settings>,
};

const { srvs, init } = useServices("app", options);
export { srvs, init };