mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-23 02:24:39 +01:00
14 lines
194 B
JavaScript
14 lines
194 B
JavaScript
|
|
/**
|
|
* Starts the oauth temporary server.
|
|
* @returns {Promise<void>}
|
|
*/
|
|
function Start() {
|
|
return wails.Plugin("oauth", "Start");
|
|
}
|
|
|
|
export default {
|
|
OAuth: {
|
|
Start,
|
|
}
|
|
};
|