From ef05c05f9cc88de6126c2ce1c8cc36dce835a695 Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Fri, 4 Oct 2024 20:21:11 -0700 Subject: [PATCH] renaming to llama-swap --- Makefile | 4 ++-- go.mod | 2 +- llama-proxy.go => llama-swap.go | 2 +- {bin => misc}/simple-responder/simple-responder.go | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename llama-proxy.go => llama-swap.go (94%) rename {bin => misc}/simple-responder/simple-responder.go (100%) diff --git a/Makefile b/Makefile index ad94000..dea9bcc 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Define variables for the application -APP_NAME = llamagate +APP_NAME = llama-swap BUILD_DIR = build # Default target: Builds binaries for both OSX and Linux @@ -22,7 +22,7 @@ linux: # for testing things simple-responder: @echo "Building simple responder" - go build -o $(BUILD_DIR)/simple-responder bin/simple-responder/simple-responder.go + go build -o $(BUILD_DIR)/simple-responder misc/simple-responder/simple-responder.go # Ensure build directory exists $(BUILD_DIR): diff --git a/go.mod b/go.mod index 967ebd4..08fcd29 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mostlygeek/llamagate +module github.com/mostlygeek/llama-swap go 1.23.0 diff --git a/llama-proxy.go b/llama-swap.go similarity index 94% rename from llama-proxy.go rename to llama-swap.go index 40d682d..750e133 100644 --- a/llama-proxy.go +++ b/llama-swap.go @@ -6,7 +6,7 @@ import ( "net/http" "os" - "github.com/mostlygeek/llamagate/proxy" + "github.com/mostlygeek/llama-swap/proxy" ) func main() { diff --git a/bin/simple-responder/simple-responder.go b/misc/simple-responder/simple-responder.go similarity index 100% rename from bin/simple-responder/simple-responder.go rename to misc/simple-responder/simple-responder.go