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

// backend for OpenBills
// currently HIGHLY under development

package main

import (
  router "github.com/MikunoNaka/openbills/router"
)

func main() {
  router.InitRouter()
}