<?xml version="1.0" encoding="utf-8"?>
<!-- XML文件需以utf-8编码-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/"> 
<!--<mobile:mobile type="mobile"/> ：移动网页-->      
<!--<mobile:mobile type="pc,mobile"/>：自适应网页-->
<!--<mobile:mobile type="htmladapt"/>：代码适配-->
    <url>
        <!--必填标签,这是具体某一个链接的定义入口，每一条数据都要用<url>和</url>包含在里面，这是必须的 -->
        <loc>https://www.twsh8.com/</loc>
        <!--必填,URL链接地址,长度不得超过256字节-->
        <!--<lastmod>2021-01-21</lastmod>-->
        <!--可以不提交该标签,用来指定该链接的最后更新时间-->
        <!--<changefreq>daily</changefreq>-->
        <!--可以不提交该标签,用这个标签告诉此链接可能会出现的更新频率 -->
        <priority>0.8</priority>
        <!--可以不提交该标签,用来指定此链接相对于其他链接的优先权比值，此值定于0.0-1.0之间-->
    </url>
    <url>
        <loc>https://twsh8.com/</loc>
        <mobile:mobile type="pc,mobile"/>
        <changefreq>daily</changefreq>
        <priority>1</priority>
    </url>
</urlset>