Skip to content

Commit

Permalink
modified README
Browse files Browse the repository at this point in the history
  • Loading branch information
nka11 committed Jun 19, 2011
1 parent 25565e8 commit 52a6f1b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ API is described with coffeescript, but can be implemented either with coffee or
## Existing implementation :

* karacos-cr-redis - Content Repository with persistence in a Redis key/value store
* karacos-cr-mongo - Same as above, but using MongoDB Document Database
* [karacos-nuq-mongo](https://github.com/karacos/karacos-nuq-mongodb) - Same as above, but using MongoDB Document Database

## Basic usage

Expand Down
9 changes: 7 additions & 2 deletions src/NuQCore.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
*
* You should have received a copy of the GNU Lesser General Public License
* along with Nu-Q. If not, see <http://www.gnu.org/licenses/>.
###
class RepositoryManager
@registry = {}
Expand Down Expand Up @@ -64,9 +66,12 @@ class NuQRepository
throw new Error "NuQRepository must be implemented"

login: (credentials) ->
throw new Error "method not implemented"
throw new Error "method not implemented"
getRoot: ->
throw new Error "method not implemented"
throw new Error "method not implemented"
# Ends repository's lifecycle (release resources, finish all sessions)
close: ->
throw new Error "method not implemented"

exports.Repository = NuQRepository

Expand Down

0 comments on commit 52a6f1b

Please sign in to comment.