main.go
1// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5// Package main is the entry point for the lune CLI.
6package main
7
8import (
9 "context"
10 "os"
11
12 "git.secluded.site/lune/cmd"
13)
14
15func main() {
16 if err := cmd.Execute(context.Background()); err != nil {
17 os.Exit(1)
18 }
19}