2 Commits

2 changed files with 4 additions and 4 deletions

View File

@@ -4,8 +4,8 @@ on:
push:
branches:
- "main"
#paths:
#- "TimetableDesigner.Backend.Events**"
paths:
- "TimetableDesigner.Backend.Events**"
jobs:
build:

View File

@@ -4,5 +4,5 @@ namespace TimetableDesigner.Backend.Events;
public abstract class EventQueue
{
internal abstract void Setup(IServiceCollection services);
public abstract void Setup(IServiceCollection services);
}