From 4febb4dd1417de8961b2ab092b0c530ca088b72a Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 21 Jan 2009 17:19:39 -0700 Subject: Started roughing out new crud base classes --- ipalib/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ipalib/__init__.py') diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 29344e18..aa0f66cc 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -874,9 +874,11 @@ import plugable from backend import Backend, Context from frontend import Command, LocalOrRemote, Application from frontend import Object, Method, Property +from crud import Create, Retrieve, Update, Delete, Search from parameters import DefaultFrom, Bool, Flag, Int, Float, Bytes, Str, Password from parameters import BytesEnum, StrEnum + try: import uuid except ImportError: -- cgit