mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-05-02 03:00:36 -04:00
This update includes all the part with updating the `genai-toolbox` repo name to `mcp-toolbox`, and the GCS buckets for binary. Notes: * For v1.0 release, binary will be available in both the existing and the new bucket. After v1.0 release, we will update to only release in the new bucket. * Did not update releaseplease.yml's packageName to prevent breaking release please * Did not update user agent that consist of genai-toolbox string * Will need to generate a new report card at goreportcard.com post name change --------- Co-authored-by: dishaprakash <57954147+dishaprakash@users.noreply.github.com>
24 lines
686 B
Go
24 lines
686 B
Go
// Copyright 2024 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/googleapis/mcp-toolbox/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|