newtype Group to ByteString
This may speed up queries for things in groups, due to Eq and Ord being faster.
This commit is contained in:
parent
3f7fe1d325
commit
6f66b53a30
10 changed files with 69 additions and 48 deletions
|
@ -26,11 +26,13 @@ start (name:g:[]) = do
|
|||
allowMessages
|
||||
showStart' "group" (Just name)
|
||||
u <- Remote.nameToUUID name
|
||||
next $ setGroup u g
|
||||
next $ setGroup u (toGroup g)
|
||||
start (name:[]) = do
|
||||
u <- Remote.nameToUUID name
|
||||
liftIO . putStrLn . unwords . S.toList =<< lookupGroups u
|
||||
liftIO . putStrLn . unwords . map fmt . S.toList =<< lookupGroups u
|
||||
stop
|
||||
where
|
||||
fmt (Group g) = decodeBS g
|
||||
start _ = giveup "Specify a repository and a group."
|
||||
|
||||
setGroup :: UUID -> Group -> CommandPerform
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue