Add enum to represent store action

This commit is contained in:
Matthias Beyer 2016-05-15 00:47:26 +02:00
parent 24e747029c
commit d03b13be10

View file

@ -0,0 +1,8 @@
pub enum StoreAction {
Create,
Retrieve,
Update,
Delete,
// "Read" doesn't matter, as we do not use git on read actions, only when altering content.
}