-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add firestore services to services object
- Loading branch information
1 parent
2612e47
commit 216f744
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
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,21 @@ | ||
import addDocument from './addDocument'; | ||
import deleteDocument from './deleteDocument'; | ||
import disableNetwork from './disableNetwork'; | ||
import enableNetwork from './enableNetwork'; | ||
import getCollection from './getCollection'; | ||
import getDocument from './getDocument'; | ||
import getRef from './getRef'; | ||
import setDocument from './setDocument'; | ||
import updateDocument from './updateDocument'; | ||
|
||
module.exports = { | ||
addDocument, | ||
deleteDocument, | ||
disableNetwork, | ||
enableNetwork, | ||
getCollection, | ||
getDocument, | ||
getRef, | ||
setDocument, | ||
updateDocument, | ||
}; |
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