diff --git a/bannercli/banner.go b/bannercli/banner.go index 5ff624c..9a9da81 100644 --- a/bannercli/banner.go +++ b/bannercli/banner.go @@ -1,5 +1,3 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package bannercli provides functionality to print different styles of banners // to the terminal. These styles include binary representation and simple // animation effects to enhance the visual presentation of CLI applications. @@ -16,6 +14,8 @@ // // // ... rest of your main function ... // } +// +// Copyright (c) 2023 H0llyW00dzZ package bannercli import ( diff --git a/exporter/session.go b/exporter/session.go index 73bf10e..c2a8646 100644 --- a/exporter/session.go +++ b/exporter/session.go @@ -1,5 +1,3 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package exporter provides tools for extracting and converting chat session data // from JSON files into various formats, such as CSV and JSON datasets. // @@ -70,6 +68,8 @@ // log.Fatal(err) // } // fmt.Println(datasetJSON) +// +// Copyright (c) 2023 H0llyW00dzZ package exporter import ( diff --git a/filesystem/file_system.go b/filesystem/file_system.go index bdbf33c..e56192d 100644 --- a/filesystem/file_system.go +++ b/filesystem/file_system.go @@ -1,5 +1,3 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package filesystem provides an abstraction over the native file system operations. // // This allows for easy testing and mocking of file system interactions. diff --git a/filesystem/file_system_mock.go b/filesystem/file_system_mock.go index 2fb7af3..859df5c 100644 --- a/filesystem/file_system_mock.go +++ b/filesystem/file_system_mock.go @@ -4,6 +4,8 @@ // "magic" of Go programming language (🎩🪄). // // Additionally, it can be utilized for tracking file activities during tests or without tests (as Expert). +// +// Copyright (c) 2023 H0llyW00dzZ package filesystem import ( diff --git a/interactivity/interactivity.go b/interactivity/interactivity.go index 7213cb0..8ce58b9 100644 --- a/interactivity/interactivity.go +++ b/interactivity/interactivity.go @@ -1,9 +1,9 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package interactivity provides functions to handle interactive command-line interfaces. // // It includes utilities for prompting users for confirmation and reading their input in a context-aware manner, which allows for graceful // cancellation of input requests. The package is designed to integrate with a filesystem interface to check for file existence and handle potential file overwrites. +// +// Copyright (c) 2023 H0llyW00dzZ package interactivity import ( diff --git a/repairdata/repairdata.go b/repairdata/repairdata.go index ee54ce5..25a30de 100644 --- a/repairdata/repairdata.go +++ b/repairdata/repairdata.go @@ -1,8 +1,8 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package repairdata provides utilities for transforming JSON data from an old format to a new format. // // It specifically ensures that each session's modelConfig contains a 'systemprompt' field. +// +// Copyright (c) 2023 H0llyW00dzZ package repairdata import ( diff --git a/updater/app.go b/updater/app.go index 723c7ff..3e64e92 100644 --- a/updater/app.go +++ b/updater/app.go @@ -1,5 +1,3 @@ -// Copyright (c) 2023 H0llyW00dzZ -// // Package updater provides functionality to automatically update a Go application // by checking for the latest release on GitHub and, if available, downloading and // applying the update. It is designed to work with applications that are distributed @@ -47,6 +45,8 @@ // authenticity of the binaries, such as signing the releases. // // # Additional Note: This Package Currently under development. +// +// Copyright (c) 2023 H0llyW00dzZ package updater import (