renaming to llama-swap

This commit is contained in:
Benson Wong
2024-10-04 20:21:11 -07:00
parent ef8d0020f3
commit ef05c05f9c
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
# Define variables for the application # Define variables for the application
APP_NAME = llamagate APP_NAME = llama-swap
BUILD_DIR = build BUILD_DIR = build
# Default target: Builds binaries for both OSX and Linux # Default target: Builds binaries for both OSX and Linux
@@ -22,7 +22,7 @@ linux:
# for testing things # for testing things
simple-responder: simple-responder:
@echo "Building 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 # Ensure build directory exists
$(BUILD_DIR): $(BUILD_DIR):

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/mostlygeek/llamagate module github.com/mostlygeek/llama-swap
go 1.23.0 go 1.23.0

View File

@@ -6,7 +6,7 @@ import (
"net/http" "net/http"
"os" "os"
"github.com/mostlygeek/llamagate/proxy" "github.com/mostlygeek/llama-swap/proxy"
) )
func main() { func main() {