mirror of
https://github.com/larksuite/meegle-cli.git
synced 2026-09-14 20:26:39 +08:00
12209db79f
Change-Id: I5d9d2443b39b1d91e158f1e934ff7c3d3164197d
15 lines
211 B
Go
15 lines
211 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
meeglecmd "github.com/larksuite/meegle-cli/cmd"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(meeglecmd.Execute())
|
|
}
|