init
This commit is contained in:
17
lib/makeup_prisma/application.ex
Normal file
17
lib/makeup_prisma/application.ex
Normal file
@@ -0,0 +1,17 @@
|
||||
defmodule MakeupPrisma.Application do
|
||||
@moduledoc false
|
||||
use Application
|
||||
|
||||
alias Makeup.Registry
|
||||
alias Makeup.Lexers.MakeupPrisma
|
||||
|
||||
def start(_type, _args) do
|
||||
Registry.register_lexer(MakeupPrisma,
|
||||
options: [],
|
||||
names: ["prisma"],
|
||||
extensions: ["prisma"]
|
||||
)
|
||||
|
||||
Supervisor.start_link([], strategy: :one_for_one)
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user