ChifiSource / Olive.jl

pure julia notebooks
MIT License
152 stars 6 forks source link

key-word arguments on routes #88

Closed emmaccode closed 9 months ago

emmaccode commented 1 year ago

Adding some key-word arguments will allow for different variation in the Olive home root. The end user would just create a pass-through to adjust such settings, eg.

session = route("/") do c::Connection
     # pre stuff here
     Olive.session(c, explorer = false, keys = false)
    # post stuff here
end