repo.or.cz
/
rootstock.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Resend websocket queries when errors are sent in response
[rootstock.git]
/
Action.hs
blob
d83411b150893d683ad79e40287250c6bac6b875
1
{-# LANGUAGE TemplateHaskell #-}
2
module
Action
where
3
import
Database
.
Persist
.
TH
(
derivePersistField
)
4
5
data
Action
6
=
Running
7
| InitialSetup
8
| AddNode
9
deriving
(
Eq
,
Show
,
Read
)
10
derivePersistField
"Action"
11