chore: Add components package marker file

- Create components.go to ensure proper Go package recognition
- Update .gitignore to exclude all Go files except components.go
This commit is contained in:
StarFleetCPTN
2025-03-08 14:12:43 -08:00
parent 0da968fd5a
commit c3a22333f7
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -44,6 +44,7 @@ Thumbs.db
# Ignore all Go files in the components directory
components/*.go
!components/components.go
# Ignore the data directory
data/
@@ -60,4 +61,4 @@ destination/
archive/
# Ignore binaries
gomft
gomft
+3
View File
@@ -0,0 +1,3 @@
// Package components contains the UI components for the GoMFT application.
// This file serves as a marker for the components package to ensure it's properly recognized by Go.
package components