mirror of
https://dev.azure.com/tstanciu94/PhantomMind/_git/Bitip
synced 2025-10-13 01:52:19 +03:00
feat: add PackageReleaseNotes to project file and update IBitipClient interface methods
This commit is contained in:
parent
5deb65a6e1
commit
c7f26a78a2
@ -8,6 +8,7 @@
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<RepositoryUrl>https://lab.code-rove.com/gitea/tudor.stanciu/bitip/src/branch/main/src/clients/dotnet</RepositoryUrl>
|
||||
<PackageTags>Bitip Toodle</PackageTags>
|
||||
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/ReleaseNotes.txt"))</PackageReleaseNotes>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -1,8 +1,16 @@
|
||||
// Copyright (c) 2025 Tudor Stanciu
|
||||
|
||||
using Bitip.Client.Models;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bitip.Client.Services
|
||||
{
|
||||
public interface IBitipClient
|
||||
{
|
||||
Task<HealthInfo> GetHealth(CancellationToken cancellationToken = default);
|
||||
Task<VersionInfo> GetVersion(CancellationToken cancellationToken = default);
|
||||
Task<IpLocation> GetIpLocation(string ip, CancellationToken cancellationToken = default);
|
||||
Task<DetailedIpLocation> GetDetailedIpLocation(string ip, CancellationToken cancellationToken = default);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user