aboutsummaryrefslogtreecommitdiff
path: root/server/database/database.go
blob: 3e603119a41a247d86c50bb1b3e371e09b061237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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")
}