1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.iocoder.yudao.framework.common.enums;
|
| /**
| * RPC 相关的枚举
| *
| * 虽然放在 yudao-spring-boot-starter-rpc 会相对合适,但是每个 API 模块需要使用到,所以暂时只好放在此处
| *
| * @author 芋道源码
| */
| public class RpcConstants {
|
| /**
| * RPC API 的前缀
| */
| public static final String RPC_API_PREFIX = "/rpc-api";
|
| }
|
|