From 45653c3e5320f2d031980b7226543cff742702db Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Tue, 28 Jul 2026 02:08:15 +0000 Subject: [PATCH] Establish Promptkit Go module foundation --- LICENSE | 4 ++-- doc.go | 2 ++ go.mod | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 doc.go create mode 100644 go.mod diff --git a/LICENSE b/LICENSE index 24762f8..66d3e7e 100644 --- a/LICENSE +++ b/LICENSE @@ -208,7 +208,7 @@ If you develop a new program, and you want it to be of the greatest possible use To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. - go-application-template + Promptkit Copyright (C) 2026 eric This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. @@ -221,7 +221,7 @@ Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - go-application-template Copyright (C) 2026 eric + Promptkit Copyright (C) 2026 eric This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..ca5bda0 --- /dev/null +++ b/doc.go @@ -0,0 +1,2 @@ +// Package promptkit defines the public package boundary for the Promptkit Go module. +package promptkit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5406445 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitea.maximumdirect.net/eric/promptkit + +go 1.25.5