From 49fa5aa2a127bdf8924d02bf77e5086b39c7a447 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 3 Sep 2025 21:15:36 -0400 Subject: i vibe coded it --- server/src/jchat_push.erl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 server/src/jchat_push.erl (limited to 'server/src/jchat_push.erl') diff --git a/server/src/jchat_push.erl b/server/src/jchat_push.erl new file mode 100644 index 0000000..2ab8b9d --- /dev/null +++ b/server/src/jchat_push.erl @@ -0,0 +1,19 @@ +-module(jchat_push). +-export([start_link/0, init/1, handle_call/3, handle_cast/2, handle_info/2]). + +-behaviour(gen_server). + +start_link() -> + gen_server:start_link({local, ?MODULE}, ?MODULE, [], []). + +init([]) -> + {ok, #{}}. + +handle_call(_Request, _From, State) -> + {reply, ok, State}. + +handle_cast(_Request, State) -> + {noreply, State}. + +handle_info(_Info, State) -> + {noreply, State}. -- cgit v1.2.3