Skip to content

Instantly share code, notes, and snippets.

@brunoripa
Created August 22, 2017 05:31
Show Gist options
  • Save brunoripa/31497b7829a0e4a9a3dbbc46aed982c9 to your computer and use it in GitHub Desktop.
Save brunoripa/31497b7829a0e4a9a3dbbc46aed982c9 to your computer and use it in GitHub Desktop.
Test gist
from abc import ABCMeta, abstractmethod
class ConfigurationPort(metaclass=ABCMeta):
@abstractmethod
def get(self, key):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment