Created
January 27, 2020 10:27
-
-
Save stolarczykt/3740c475213a2c7f00c1896a82886813 to your computer and use it in GitHub Desktop.
Temporal cohesion example
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
public class DocsInitializer { | |
public void createBaseDirectoryStructure() { | |
//creating required directory structure | |
} | |
public void cacheDefaults() { | |
//caching required defaults | |
} | |
public Client setupClient() { | |
//client's setup | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment