10 lines
210 B
TypeScript
Raw Normal View History

2022-04-29 15:25:10 +08:00
import { TsrpcServer } from '../../../index';
import { serviceProto } from './protocols/proto';
let server = new TsrpcServer({
proto: serviceProto,
});
server.autoImplementApi('src/api');
server.start();