ecal.go 481 B

123456789101112131415161718192021222324
  1. /*
  2. * ECAL
  3. *
  4. * Copyright 2020 Matthias Ladkau. All rights reserved.
  5. *
  6. * This Source Code Form is subject to the terms of the MIT
  7. * License, If a copy of the MIT License was not distributed with this
  8. * file, You can obtain one at https://opensource.org/licenses/MIT.
  9. */
  10. package main
  11. import "fmt"
  12. /*
  13. Ideas:
  14. - auto reload code (watch)
  15. - cron job support (trigger periodic events)
  16. - create executable binary (pack into single binary)
  17. */
  18. func main() {
  19. fmt.Println("ECAL")
  20. }