mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-12 07:54:49 +08:00
25 lines
557 B
Elixir
25 lines
557 B
Elixir
defmodule Livebook.Teams.Constants do
|
|
@doc """
|
|
Returns the public key prefix
|
|
"""
|
|
@spec public_key_prefix() :: String.t()
|
|
def public_key_prefix(), do: "lb_opk_"
|
|
|
|
@doc """
|
|
Returns the Agent Key prefix
|
|
"""
|
|
@spec agent_key_prefix() :: String.t()
|
|
def agent_key_prefix, do: "lb_ak_"
|
|
|
|
@doc """
|
|
Returns the Org Token prefix
|
|
"""
|
|
@spec org_token_prefix() :: String.t()
|
|
def org_token_prefix, do: "lb_ok_"
|
|
|
|
@doc """
|
|
Returns the Teams Key prefix
|
|
"""
|
|
@spec teams_key_prefix() :: String.t()
|
|
def teams_key_prefix(), do: "lb_tk_"
|
|
end
|