diff --git a/WebAuthDNSSEC b/WebAuthDNSSEC new file mode 100644 index 0000000..d231371 --- /dev/null +++ b/WebAuthDNSSEC @@ -0,0 +1,13 @@ +private fun logout() { + WebAuthProvider.logout(account) + .withScheme("demo") + .start(this, object: Callback { + override fun onSuccess(payload: Void?) { + // The user has been logged out! + } + + override fun onFailure(error: AuthenticationException) { + // Something went wrong! + } + }) +}