Current section

Files

Jump to
discord_gleam src discord_gleam@ws@gateway_state.erl
Raw

src/discord_gleam@ws@gateway_state.erl

-module(discord_gleam@ws@gateway_state).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/discord_gleam/ws/gateway_state.gleam").
-export([new/0]).
-export_type([gateway_state/0]).
-type gateway_state() :: {gateway_state, integer(), binary(), binary()}.
-file("src/discord_gleam/ws/gateway_state.gleam", 5).
-spec new() -> gateway_state().
new() ->
{gateway_state, 0, <<""/utf8>>, <<"gateway.discord.gg"/utf8>>}.