mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-30 18:53:24 +08:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { User, UserRole } from "../types";
|
|
|
|
export const localUser: User = {
|
|
id: "local-user",
|
|
name: "Local user",
|
|
description: "",
|
|
avatar: "",
|
|
role: UserRole.User,
|
|
};
|