mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-10 15:57:53 +00:00
feat: upgrade to .NET 6, refactor everything
This commit is contained in:
parent
d28e99ba43
commit
1918c56937
314 changed files with 27954 additions and 27966 deletions
|
|
@ -1,13 +1,9 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PluralKit.Core
|
||||
namespace PluralKit.Core;
|
||||
|
||||
public interface IPKTransaction: IDbTransaction, IAsyncDisposable
|
||||
{
|
||||
public interface IPKTransaction: IDbTransaction, IAsyncDisposable
|
||||
{
|
||||
public Task CommitAsync(CancellationToken ct = default);
|
||||
public Task RollbackAsync(CancellationToken ct = default);
|
||||
}
|
||||
public Task CommitAsync(CancellationToken ct = default);
|
||||
public Task RollbackAsync(CancellationToken ct = default);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue