Closed tonicebrian closed 1 week ago
I am revisiting/updating some old Haskell code and got things compiling with:
storageReadWrite :: Proxy '[Storage.Devstorage'ReadWrite]
storageReadWrite = Proxy
allow storageReadWrite someExistingCredentials
Examples were updated with latest code https://github.com/brendanhay/gogol/blob/main/examples/src/Example/Storage.hs#L48
Following recommendations from https://github.com/brendanhay/gogol/issues/147#issuecomment-635735272 I'm using latest commit on master to have
gogol
in my project. But then all the scope code changed and instead of havingstorageReadWriteScope
like being used in the examples https://github.com/brendanhay/gogol/blob/main/examples/src/Example/Storage.hs#L46 now we haveDevstorage'ReadWrite
. When trying to use the new symbol I get this compilation error:Can we have an updated example with the new Scope symbols?