]> gitweb.michael.orlitzky.com - mailshears.git/blob - src/mailstore.rb
Remove the default initializer for the Mailstore class.
[mailshears.git] / src / mailstore.rb
1 class Mailstore
2
3 attr_accessor :domain_root
4
5 def def get_domains_from_filesystem
6 raise NotImplementedError
7 end
8
9 def get_accounts_from_filesystem(domains)
10 raise NotImplementedError
11 end
12
13 def get_domain_path(domain)
14 raise NotImplementedError
15 end
16
17 def get_account_path(account)
18 raise NotImplementedError
19 end
20 end