You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
1 year ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/MessageService | 2 years ago | |
| FodyWeavers.xml | 2 years ago | |
| FodyWeavers.xsd | 2 years ago | |
| LINGYUN.Abp.MessageService.HttpApi.csproj | 2 years ago | |
| README.EN.md | 1 year ago | |
| README.md | 1 year ago | |
README.md
LINGYUN.Abp.MessageService.HttpApi
消息服务 HTTP API 模块。
功能特性
- 提供消息服务的 HTTP API 接口
- 支持 MVC 数据注解本地化
- 自动注册 API 控制器
依赖模块
- LINGYUN.Abp.MessageService.Application.Contracts
AbpAspNetCoreMvcModule
配置使用
- 首先,需要安装 LINGYUN.Abp.MessageService.HttpApi 到你的项目中:
dotnet add package LINGYUN.Abp.MessageService.HttpApi
- 添加
AbpMessageServiceHttpApiModule到你的模块的依赖列表:
[DependsOn(typeof(AbpMessageServiceHttpApiModule))]
public class YourModule : AbpModule
{
}