/* * ECAL * * Copyright 2020 Matthias Ladkau. All rights reserved. * * This Source Code Form is subject to the terms of the MIT * License, If a copy of the MIT License was not distributed with this * file, You can obtain one at https://opensource.org/licenses/MIT. */ package main import "fmt" /* Ideas: - auto reload code (watch) - cron job support (trigger periodic events) - create executable binary (pack into single binary) */ func main() { fmt.Println("ECAL") }