mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 00:52:41 +03:00
13 lines
140 B
JavaScript
13 lines
140 B
JavaScript
|
import tauri from './tauri'
|
||
|
|
||
|
/**
|
||
|
* gets the CLI matches
|
||
|
*/
|
||
|
function getMatches() {
|
||
|
return tauri.cliMatches()
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
getMatches
|
||
|
}
|