Hello all 👋 . I'm trying to set up supertokens locally in docker; got the server up and running. I have my own go auth service that will talk to it on occasion if needed. I am trying to create roles via this second service/api, which is just a tiny go http service. It's running on the same docker service and initialises supertokens at startup. However when one of the http handlers calls
userroles.CreateNewRoleOrAddPermissions()
it fails with the error:
Initialisation not done. Did you forget to call the init function?
which... I did call init during bootstrap. Are we supposed to call init each time we want to use one of the supertoken methods?