Skip to content

Commit

Permalink
remaining files
Browse files Browse the repository at this point in the history
  • Loading branch information
Yucked committed Jun 18, 2024
1 parent 6f7b507 commit 129022a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Ankh.Backend/Ankh.Backend.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>

<ItemGroup>
Expand All @@ -14,4 +15,10 @@
<PackageReference Include="RavenDB.Client" Version="6.0.103"/>
</ItemGroup>

<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Ankh.Backend/Workers/RoomCacheWorker.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Ankh.Backend.Workers;

public sealed class RoomCacheWorker : BackgroundService{
public sealed class RoomCacheWorker : BackgroundService {
protected override Task ExecuteAsync(CancellationToken stoppingToken) {
throw new NotImplementedException();
return Task.CompletedTask;
}
}
2 changes: 1 addition & 1 deletion Ankh.Backend/Workers/ShopCacheWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

public sealed class ShopCacheWorker : BackgroundService {
protected override Task ExecuteAsync(CancellationToken stoppingToken) {
throw new NotImplementedException();
return Task.CompletedTask;
}
}

0 comments on commit 129022a

Please sign in to comment.