diff options
Diffstat (limited to 'server/database/database.go')
-rw-r--r-- | server/database/database.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/database/database.go b/server/database/database.go new file mode 100644 index 0000000..3e60311 --- /dev/null +++ b/server/database/database.go @@ -0,0 +1,22 @@ +/* + * OpenBills - Self hosted browser app to generate and keep track of simple invoices + * Version - 0 + * Licensed under the MIT license - https://opensource.org/licenses/MIT + * + * Copyright (c) 2021 Vidhu Kant Sharma +*/ + +// Idk how databases work +// this package is supposed to handle the sqlite database +// will figure that out + +package database + +import ( + "fmt" +) + +// very important function that fucking needed a new package +func SayHello() { + fmt.Println("Hello") +} |