aemet/main.go

12 lines
95 B
Go
Raw Normal View History

2024-05-08 09:08:36 +02:00
/*
Copyright © 2024 raul
*/
2024-04-29 08:58:30 +02:00
2024-05-08 09:08:36 +02:00
package main
2024-04-29 08:58:30 +02:00
2024-05-08 09:08:36 +02:00
import "aemet/cmd"
2024-05-03 09:24:00 +02:00
2024-04-29 08:58:30 +02:00
func main() {
2024-05-08 09:08:36 +02:00
cmd.Execute()
2024-04-29 08:58:30 +02:00
}