golines --max-len=60

This commit is contained in:
Dmitrii Okunev
2024-10-16 22:58:55 +01:00
parent df42a4da66
commit fb33738f1c
73 changed files with 1812 additions and 433 deletions

View File

@@ -147,12 +147,24 @@ func streamSetup(cmd *cobra.Command, args []string) {
assertNoError(ctx, err)
if isEnabled[youtube.ID] {
err := streamD.StartStream(ctx, youtube.ID, title, description, cfg.Backends[youtube.ID].StreamProfiles[profileName])
err := streamD.StartStream(
ctx,
youtube.ID,
title,
description,
cfg.Backends[youtube.ID].StreamProfiles[profileName],
)
assertNoError(ctx, err)
}
if isEnabled[twitch.ID] {
err := streamD.StartStream(ctx, twitch.ID, title, description, cfg.Backends[twitch.ID].StreamProfiles[profileName])
err := streamD.StartStream(
ctx,
twitch.ID,
title,
description,
cfg.Backends[twitch.ID].StreamProfiles[profileName],
)
assertNoError(ctx, err)
}
}