www.spaceplanner.app

Web client to the spaceplanner API
git clone git://jacobedwards.org/www.spaceplanner.app
Log | Files | Refs

main.js (200B)


      1 import * as api from "/lib/api.js"
      2 import * as etc from "/lib/etc.js"
      3 
      4 let default_page = "/"
      5 
      6 etc.handle_wrap(init)
      7 
      8 function init() {
      9 	api.update_token(null)
     10 	window.location.href = default_page 
     11 }