Skip to content

Instantly share code, notes, and snippets.

@pik94os
Created May 13, 2016 06:46
package services
import models.AttributeName
import scala.concurrent.Future
trait BackendAttributeNameService {
def attributes: Future[Seq[AttributeName]]
def saveAttribute(attribute: AttributeName): Future[AttributeName]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment