mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
6 lines
No EOL
175 B
Elixir
6 lines
No EOL
175 B
Elixir
defmodule Search.NgramParser do
|
|
alias Search.LiteralParser
|
|
|
|
# Dummy stub. Used for convenient parser implementation.
|
|
def parse(input), do: LiteralParser.parse(input)
|
|
end |