mirror of
https://gitlab.com/TECHNOFAB/go-copilot-proxy.git
synced 2025-12-11 22:10:06 +01:00
13 lines
158 B
Go
13 lines
158 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"gitlab.com/technofab/go-copilot-proxy/internal/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|