I'm use wai to build a web backend.
And I want to know the which kind of data save in the requst's vault.
But I don't know how to check which keys are already in this vault.
I find the https://github.com/HeinrichApfelmus/vault/blob/master/src/Data/Vault/ST/ST.hs
and try with
import qualified Data.Vault.ST.Lazy as DV
checkVault (DV.Vault v) = do
putStrLn $ show $ v
But the ghc said "Not in scope: data constructor ‘DV.Vault’"
Is there any way I can get the vault's Keys?
Or where is the docs I can know which data wai save in this vault.