Moving go code to subdir.

This commit is contained in:
2025-08-08 15:17:12 +02:00
parent 853bee22db
commit e8d042b65e
10 changed files with 17 additions and 24 deletions

25
.gitignore vendored
View File

@@ -1,26 +1,3 @@
# Allowlisting gitignore template for GO projects prevents us
# from adding various unwanted local files, such as generated
# files, developer configurations or IDE-specific files etc.
#
# Recommended: Go.AllowList.gitignore
# Ignore everything
*
.env
# But not these files...
!/.gitignore
!*.go
!go.sum
!go.mod
!README.md
!LICENSE
# !Makefile
# ...even if they are in subdirectories
!*/
!.gitea/*
!.gitea/workflows/*
.swp

16
code/.gitignore vendored Normal file
View File

@@ -0,0 +1,16 @@
# Allowlisting gitignore template for GO projects prevents us
# from adding various unwanted local files, such as generated
# files, developer configurations or IDE-specific files etc.
#
# Recommended: Go.AllowList.gitignore
# Ignore everything
*
.env
# But not these files...
!/.gitignore
!*.go
!go.sum
!go.mod

View File

View File