blob: e078ea3c5d745ac3c44d98b8d6afd82580ebc447 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.todos.persistence;
import io.v.todos.model.ListMetadata;
import io.v.todos.model.ListSpec;
public interface MainPersistence extends Persistence {
String addTodoList(ListSpec listSpec);
void deleteTodoList(String key);
}