emacs-survey/src/EmacsSurvey.jl

13 lines
128 B
Julia
Raw Normal View History

2021-12-17 18:09:25 +00:00
module EmacsSurvey
2022-10-02 08:17:02 +00:00
using Genie
2021-12-17 18:09:25 +00:00
2022-10-02 08:17:02 +00:00
const up = Genie.up
export up
2021-12-17 18:09:25 +00:00
2022-10-02 08:17:02 +00:00
function main()
2021-12-17 18:09:25 +00:00
Genie.genie(; context = @__MODULE__)
end
end