Packages

A simple robots.txt service

Current section

Files

Jump to
mr_roboto lib mr_roboto.ex
Raw

lib/mr_roboto.ex

defmodule MrRoboto do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
worker(MrRoboto.Agent, []),
worker(MrRoboto.Warden, [])
]
opts = [strategy: :one_for_one, name: MrRoboto]
Supervisor.start_link(children, opts)
end
end