8 lines
87 B
Go
8 lines
87 B
Go
package database
|
|
|
|
type Database struct{}
|
|
|
|
func New() *Database {
|
|
return &Database{}
|
|
}
|