summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-02-28 13:59:39 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-02-28 13:59:39 +0100 |
commit | 5235345620c0d4a6669ccc6badc387902ea8c92a (patch) | |
tree | 0a8989ffd29b0a9d8ab997d763f15268d18de06a /src/io/security.erl | |
parent | 8ed3e625a5576b6f43b966ee77e0f6de282a074e (diff) |
Adds more types specifications.
Diffstat (limited to 'src/io/security.erl')
-rw-r--r-- | src/io/security.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/io/security.erl b/src/io/security.erl index 34b6df2..60f6661 100644 --- a/src/io/security.erl +++ b/src/io/security.erl @@ -23,7 +23,11 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +-spec assert_identity (any(), any()) -> 'unimplemented'. assert_identity (_PlayerID, _SessionToken) -> unimplemented. +-spec lock_queries (any()) -> 'unimplemented'. lock_queries (_PlayerID) -> unimplemented. + +-spec unlock_queries (any()) -> 'unimplemented'. unlock_queries (_PlayerID) -> unimplemented. |