mirror of https://github.com/webpack/webpack.git
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
|
import await { dbCall } from "./db-connection.js";
|
||
|
|
||
|
export const createUser = async name => {
|
||
|
command = `CREATE USER ${name}`;
|
||
|
await dbCall({ command });
|
||
|
}
|