mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
13 lines
341 B
Python
13 lines
341 B
Python
from countershape import Page
|
|
|
|
pages = [
|
|
Page("webapp.html", "Using the Web App"),
|
|
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"),
|
|
Page("java.html", "Java"),
|
|
]
|