]> gitweb.michael.orlitzky.com - mailshears.git/blob - src/mailstore.rb
Initial commit.
[mailshears.git] / src / mailstore.rb
1 class Mailstore
2
3 attr_accessor :domain_root
4
5 def initialize(domain_root)
6 @domain_root = domain_root
7 end
8
9 def get_accounts_from_filesystem()
10 raise NotImplementedError
11 end
12
13 end