Skip to content

Instantly share code, notes, and snippets.

View daviaws's full-sized avatar

daviaws

View GitHub Profile
@myobie
myobie / application.ex
Last active July 21, 2025 18:19
Using Finch with ExAws
defmodule Example.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
Example.Repo,
ExampleWeb.Telemetry,
{Phoenix.PubSub, name: Example.PubSub},