Created
February 4, 2018 20:20
-
-
Save twittemb/d2ddef8a93f062b4872762b83302f893 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| class Service1 { | |
| func executeService1() { | |
| print ("execution of Service1") | |
| } | |
| } | |
| class Service2 { | |
| func executeService2() { | |
| print ("execution of Service2") | |
| } | |
| } | |
| class Service3 { | |
| func executeService3() { | |
| print ("execution of Service3") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment