mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 12:15:42 +08:00
16 lines
448 B
C#
16 lines
448 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BililiveRecorder.Web.Api
|
||
|
{
|
||
|
[ApiController, Route("api/[controller]", Name = "[controller] [action]")]
|
||
|
public class VersionController : ControllerBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 读取软件版本信息
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public Schemas.Types.RecorderVersion GetVersion() => Schemas.Types.RecorderVersion.Instance;
|
||
|
}
|
||
|
}
|