From 5e377f152de4073c79abcf4efb4507306604b170 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 12 Feb 2013 20:13:04 -0600 Subject: renamings and style tweaks to make this more readable --- src/main/scala/cake/services.scala | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/main/scala/cake/services.scala (limited to 'src/main/scala/cake/services.scala') diff --git a/src/main/scala/cake/services.scala b/src/main/scala/cake/services.scala deleted file mode 100644 index dd949c2..0000000 --- a/src/main/scala/cake/services.scala +++ /dev/null @@ -1,21 +0,0 @@ -package cake.services - -trait HasApplication { - type ApplicationType - val application: ApplicationType with IApplication - trait IApplication { - def run (): Unit - } -} - -trait HasDatabase { - type DatabaseType - val database: DatabaseType with IDatabase - trait IDatabase extends cake.database.Database -} - -trait HasLogger { - type LoggerType - val logger: LoggerType with ILogger - trait ILogger extends cake.logger.Logger -} -- cgit v1.2.3-54-g00ecf