From 2fa534ff2600051a4cfa77776e3492553b804710 Mon Sep 17 00:00:00 2001 From: astaxie Date: Tue, 6 Aug 2013 16:40:23 +0800 Subject: [PATCH] delete model move to orm --- model.go | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 model.go diff --git a/model.go b/model.go deleted file mode 100644 index 74e37f9d..00000000 --- a/model.go +++ /dev/null @@ -1,36 +0,0 @@ -package beego - -type BeeModel struct { - driver string -} - -func (this *BeeModel) Insert() { - -} - -func (this *BeeModel) MultipleInsert() { - -} - -func (this *BeeModel) Update() { - -} - -func (this *BeeModel) Query() { - -} - -//Deletes from table with clauses where and using. -func (this *BeeModel) Delete() { - -} - -//Start a transaction -func (this *BeeModel) Transaction() { - -} - -//commit transaction -func (this *BeeModel) Commit() { - -}