10 lines
185 B
Ruby
10 lines
185 B
Ruby
|
|
# Local persistence layer. Governs how records are saved and loaded.
|
||
|
|
class Store
|
||
|
|
def initialize(db_path)
|
||
|
|
@db_path = db_path
|
||
|
|
end
|
||
|
|
|
||
|
|
def save(record); end
|
||
|
|
def load(id); end
|
||
|
|
end
|