mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 19:57:16 +00:00
10 lines
264 B
Python
10 lines
264 B
Python
from countershape import Page
|
|
|
|
pages = [
|
|
Page("firefox.html", "Firefox"),
|
|
Page("osx.html", "OSX"),
|
|
Page("windows7.html", "Windows 7"),
|
|
Page("ios.html", "IOS"),
|
|
Page("ios-simulator.html", "IOS Simulator"),
|
|
Page("android.html", "Android"),
|
|
]
|