Created
August 1, 2019 06:26
-
-
Save kamal-kambe/ce8a2f4973313976f3db2a3e6906b59f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package service | |
type BaseFactory interface { | |
NewBase() Base | |
} | |
type baseFactory struct { | |
StorageFactory | |
} | |
func New(sf StorageFactory) BaseFactory { | |
return &baseFactory{ | |
StorageFactory: bsf | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment