1
0
Fork 0

feat: initial commit

Signed-off-by: Vojtech Mares <iam@vojtechmares.com>
This commit is contained in:
Vojtěch Mareš 2024-01-02 18:53:38 +01:00
commit 3d734673ff
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
4 changed files with 31 additions and 0 deletions

13
.editorconfig Normal file
View file

@ -0,0 +1,13 @@
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = null
[Makefile]
indent_style = tab

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# Backoffice API
A Go backend server with REST API interface for my (freelancer's) backoffice.
Primary goal is to help organize myself and trainings.

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module gitlab.mareshq.com/hq/backoffice/backoffice-api
go 1.21.5

10
main.go Normal file
View file

@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
fmt.Println("Hello from backoffice api")
for {
// do nothing, simulate a running server
}
}