Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Docs [Golang] [Package] Fix Header not showing in Index go.dev (#41)
Browse files Browse the repository at this point in the history
- [+] fix(banner.go): fix copyright header
- [+] fix(session.go): fix copyright header
- [+] fix(file_system.go): fix copyright header
- [+] fix(file_system_mock.go): fix copyright header
- [+] fix(interactivity.go): fix copyright header
- [+] fix(repairdata.go): fix copyright header
- [+] fix(app.go): fix copyright header
  • Loading branch information
H0llyW00dzZ authored Dec 12, 2023
1 parent 8a16b37 commit cb26305
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions bannercli/banner.go
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -16,6 +14,8 @@
//
// // ... rest of your main function ...
// }
//
// Copyright (c) 2023 H0llyW00dzZ
package bannercli

import (
Expand Down
4 changes: 2 additions & 2 deletions exporter/session.go
Original file line number Diff line number Diff line change
@@ -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.
//
Expand Down Expand Up @@ -70,6 +68,8 @@
// log.Fatal(err)
// }
// fmt.Println(datasetJSON)
//
// Copyright (c) 2023 H0llyW00dzZ
package exporter

import (
Expand Down
2 changes: 0 additions & 2 deletions filesystem/file_system.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 2 additions & 0 deletions filesystem/file_system_mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions interactivity/interactivity.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions repairdata/repairdata.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions updater/app.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 (
Expand Down

0 comments on commit cb26305

Please sign in to comment.