From c535d4beae24e198e1058c426cd74d0ec5d7c48c Mon Sep 17 00:00:00 2001 From: Tomasz Mazur <47872060+AHGIJMKLKKZNPJKQR@users.noreply.github.com> Date: Mon, 18 Aug 2025 17:19:50 +0200 Subject: [PATCH] Remove redundant file --- .../lib/fishjam/shared_notifications.pb.ex | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 fishjam_protos/lib/fishjam/shared_notifications.pb.ex diff --git a/fishjam_protos/lib/fishjam/shared_notifications.pb.ex b/fishjam_protos/lib/fishjam/shared_notifications.pb.ex deleted file mode 100644 index 0e39892..0000000 --- a/fishjam_protos/lib/fishjam/shared_notifications.pb.ex +++ /dev/null @@ -1,29 +0,0 @@ -defmodule Fishjam.TrackType do - @moduledoc false - - use Protobuf, enum: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 - - field :TRACK_TYPE_UNSPECIFIED, 0 - field :TRACK_TYPE_VIDEO, 1 - field :TRACK_TYPE_AUDIO, 2 -end - -defmodule Fishjam.TrackEncoding do - @moduledoc false - - use Protobuf, enum: true, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 - - field :TRACK_ENCODING_UNSPECIFIED, 0 - field :TRACK_ENCODING_PCM16, 1 - field :TRACK_ENCODING_OPUS, 2 -end - -defmodule Fishjam.Track do - @moduledoc false - - use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 - - field :id, 1, type: :string - field :type, 2, type: Fishjam.TrackType, enum: true - field :metadata, 3, type: :string -end