mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Fixed build
This commit is contained in:
parent
7414f3284d
commit
ff242f2531
5 changed files with 46 additions and 4 deletions
15
src/Ombi.Api.Telegram/Class1.cs
Normal file
15
src/Ombi.Api.Telegram/Class1.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
|
||||
namespace Ombi.Api.Telegram
|
||||
{
|
||||
public class TelegramApi
|
||||
{
|
||||
public TelegramApi(IApi api)
|
||||
{
|
||||
Api = api;
|
||||
}
|
||||
//https://core.telegram.org/bots/api
|
||||
//https://github.com/TelegramBots/telegram.bot
|
||||
private IApi Api { get; }
|
||||
}
|
||||
}
|
11
src/Ombi.Api.Telegram/Ombi.Api.Telegram.csproj
Normal file
11
src/Ombi.Api.Telegram/Ombi.Api.Telegram.csproj
Normal file
|
@ -0,0 +1,11 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.6</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Ombi.Api\Ombi.Api.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue