From aca520fe1ec02ce48560f16768f3c4a67fb7376b Mon Sep 17 00:00:00 2001 From: ktkk Date: Wed, 24 Sep 2025 15:23:11 +0000 Subject: [PATCH] Update project naming Use the correct project name (web-terminal-experiment) in both flake.nix and go.mod. --- flake.nix | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index eb94bec..00128f1 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Go Template"; + description = "Web Terminal Experiment"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; @@ -24,7 +24,7 @@ devShells.default = pkgs.mkShell {inherit nativeBuildInputs buildInputs;}; packages.default = pkgs.buildGoModule rec { - name = "template"; + name = "web-terminal-experiment-server"; src = ./.; inherit buildInputs; diff --git a/go.mod b/go.mod index 0b57841..4aa1467 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.katkak.dev/katkak/terminal +module git.katkak.dev/katkak/web-terminal-experiment go 1.25.0