Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
HitomaruKonpaku committed Oct 13, 2024
1 parent 11112c7 commit e185d58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ RUN chmod a+rx /usr/local/bin/yt-dlp
COPY --from=dependencies /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist

CMD [ "/sbin/tini", "--", "node", "dist/index" ]
ENTRYPOINT [ "/sbin/tini", "--", "node", "dist/index" ]
6 changes: 4 additions & 2 deletions src/modules/Webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ import { configManager } from './ConfigManager'

interface WebhookConfig {
active?: boolean

urls?: string[]
twitcasting?: string[]
youtube?: string[]
message?: string
mentions?: {
userIds?: string
roleIds?: string
}

twitcasting?: string[]
youtube?: string[]
}

export class Webhook {
Expand Down

0 comments on commit e185d58

Please sign in to comment.