2023-11-06 07:33:52 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-08 07:33:19 +00:00
|
|
|
"github.com/AYM1607/ccclip/internal/server/client"
|
2023-11-06 07:33:52 +00:00
|
|
|
)
|
|
|
|
|
|
2023-11-08 07:33:19 +00:00
|
|
|
var apiclient *client.Client
|
2023-11-06 07:33:52 +00:00
|
|
|
|
2023-11-08 07:33:19 +00:00
|
|
|
func init() {
|
2025-05-10 13:59:51 -07:00
|
|
|
apiclient = client.New("https://clipboard.jmug.me")
|
2023-11-08 07:33:19 +00:00
|
|
|
}
|
2023-11-06 07:33:52 +00:00
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
rootCmd.Execute()
|
|
|
|
|
}
|