8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
'use server'
|
|
|
|
import { signOut } from '@/config/auth'
|
|
|
|
export const logout = async () => {
|
|
// do something separately from js client bundle prior logging out
|
|
await signOut()
|
|
} |