Detect language for incoming posts

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-04-25 23:11:12 +02:00
commit 80dbbd5501
2 changed files with 10 additions and 2 deletions

View file

@ -14,5 +14,5 @@ defmodule LanguageDetectorMock do
def configured?, do: true
@impl Provider
def detect(text), do: "fr"
def detect(_text), do: "fr"
end