Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ProducerMatt committed Mar 24, 2024
1 parent 2cbb7cd commit 0c7f23c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/service/discord.ex
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,15 @@ defmodule Service.Discord.Handler do
vip_ids: _ :: vips()
)

@spec! vip_in_this_context?(vips(), Discord.discord_guild_id() | nil, Discord.discord_author_id()) ::
@spec! vip_in_this_context?(
vips(),
Discord.discord_guild_id() | nil,
Discord.discord_author_id()
) ::
boolean()
def vip_in_this_context?(vips, nil, author_id),
do: S.vip_in_this_context?(vips, S.make_dm_tuple(Service.Discord), author_id)

def vip_in_this_context?(vips, server_id, author_id),
do: S.vip_in_this_context?(vips, server_id, author_id)

Expand Down

0 comments on commit 0c7f23c

Please sign in to comment.