mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 04:03:31 +00:00
7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
'use server'
|
|
|
|
import { signOut } from '@/auth'
|
|
|
|
export const logout = async () => {
|
|
await signOut()
|
|
}
|