• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Aldaviva / SunsUpStreamsUp / 25347769334

04 May 2026 10:48PM UTC coverage: 0.0% (-46.4%) from 46.429%
25347769334

push

github

web-flow
Bump Microsoft.IdentityModel.JsonWebTokens from 8.17.0 to 8.18.0 (#42)

---
updated-dependencies:
- dependency-name: Microsoft.IdentityModel.JsonWebTokens
  dependency-version: 8.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

0 of 119 branches covered (0.0%)

0 of 282 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/SunsUpStreamsUp/Program.cs
1
using NodaTime;
2
using RuntimeUpgrade.Notifier;
3
using RuntimeUpgrade.Notifier.Data;
4
using SunsUpStreamsUp;
5
using SunsUpStreamsUp.Logic;
6
using SunsUpStreamsUp.Options;
7
using Unfucked.DI;
8
using Unfucked.HTTP;
9
using Unfucked.OBS;
10

11
Version.PrintProgramVersionAndExitIfRequested();
×
12

13
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
×
14

15
builder.Configuration.AlsoSearchForJsonFilesInExecutableDirectory();
×
16

17
builder.Logging.AddUnfuckedConsole(static options => options.Color = true);
×
18

19
builder.Services
×
20
    .Configure<StreamOptions>(builder.Configuration.GetSection("stream"))
×
21
    .Configure<GeographicOptions>(builder.Configuration.GetSection("geography"))
×
22
    .Configure<SocialOptions>(builder.Configuration.GetSection("social"))
×
23
    .AddHostedService<StreamManagerImpl>(SuperRegistration.Interfaces)
×
24
    .AddHostedService<SolarEventEmitterImpl>(SuperRegistration.Interfaces)
×
25
    .AddHostedService<BlueskyClient>()
×
26
    .AddSingleton<IClock>(SystemClock.Instance)
×
27
    .AddSingleton<IObsClientFactory, ObsClientFactory>()
×
28
    .AddSingleton<IHttpClient, UnfuckedHttpClient>()
×
29
    .AddSingleton<BlueskyAuthFilter>()
×
30
    .AddSingleton(TimeProvider.System);
×
31

32
using IHost host = builder.Build();
×
33

34
using RuntimeUpgradeNotifier upgradeNotifier = new() {
×
35
    LoggerFactory   = host.Services.GetRequiredService<ILoggerFactory>(),
×
36
    RestartStrategy = RestartStrategy.AutoRestartProcess,
×
37
    ExitStrategy    = new HostedLifetimeExit(host)
×
38
};
×
39

40
try {
41
    await host.RunAsync();
×
42
    return 0;
×
43
} catch (ObsFailedToConnect) {
×
44
    return 1;
×
45
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc