mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-05 19:41:17 +08:00
15 lines
194 B
JavaScript
15 lines
194 B
JavaScript
|
|
/**
|
|
* Starts the oauth temporary server.
|
|
* @returns {Promise<void>}
|
|
*/
|
|
function Start() {
|
|
return wails.Plugin("oauth", "Start");
|
|
}
|
|
|
|
export default {
|
|
OAuth: {
|
|
Start,
|
|
}
|
|
};
|