/* * 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") }