A11yWatch/a11ywatch-core

View on GitHub
src/proto/init.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { createServer } from "./website-server";
import { startClientsGRPC } from "./init-clients";

export const startGRPC = async () => {
  await createServer();
  await startClientsGRPC();
};