mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Added a new layer: engine (equivalent to use cases in Clean Architecture). Should make testing things easier
This commit is contained in:
parent
56e9ad3def
commit
91c660c746
6 changed files with 91 additions and 39 deletions
|
@ -11,7 +11,7 @@ var (
|
|||
definitions map[reflect.Type]interface{}
|
||||
)
|
||||
|
||||
func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface{}) {
|
||||
func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface{}) interface{} {
|
||||
typ := reflect.TypeOf(ptr)
|
||||
provider := inject.NewProvider(constructor, args...)
|
||||
|
||||
|
@ -21,6 +21,7 @@ func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface
|
|||
definitions[typ] = ptr
|
||||
}
|
||||
Graph.Define(ptr, provider)
|
||||
return ptr
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
11
utils/time.go
Normal file
11
utils/time.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package utils
|
||||
|
||||
import "time"
|
||||
|
||||
func ToTime(millis int64) time.Time {
|
||||
return time.Unix(0, millis*int64(time.Millisecond))
|
||||
}
|
||||
|
||||
func ToMillis(t time.Time) int64 {
|
||||
return t.UnixNano() / int64(time.Millisecond)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue