Skip to content
Snippets Groups Projects

Develop

Merged Ghost User requested to merge develop into master
6 files
+ 19
42
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 0
15
package interfaces
type Database interface {
DropTables()
}
type MockDatabase struct {
}
func (db MockDatabase) DropTables() {
}
func NewMockDatabaseClient(uri, username, password string, encrypted bool) Database {
return MockDatabase{}
}
Loading