generated from GDGVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lucy: rename DomainType to FamilyType
- Loading branch information
1 parent
b21841a
commit 59bc4c3
Showing
5 changed files
with
91 additions
and
88 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package lucy | ||
|
||
type FamilyType uint | ||
|
||
const ( | ||
Where FamilyType = iota | ||
Relation FamilyType = iota | ||
Creation FamilyType = iota | ||
Updation FamilyType = iota | ||
Deletion FamilyType = iota | ||
SetTarget FamilyType = iota | ||
Unknown FamilyType = iota | ||
And FamilyType = iota | ||
Or FamilyType = iota | ||
MiscNodeName FamilyType = iota | ||
Model FamilyType = iota | ||
AndStr FamilyType = iota | ||
OrStr FamilyType = iota | ||
WhereStr FamilyType = iota | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package lucy | ||
|
||
type Query struct { | ||
DomainType DomainType | ||
FamilyType FamilyType | ||
Params interface{} | ||
Output interface{} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters