mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-06 03:59:22 +01:00
9 lines
135 B
Python
9 lines
135 B
Python
#!/usr/bin/python3
|
|
import os
|
|
|
|
class HostapdCLI:
|
|
|
|
@staticmethod
|
|
def wps_push_button():
|
|
os.system('hostapd_cli wps_pbc')
|