001package com.facebook.swift.service;
002
003public interface XHRHomepageProvider {
004        /**
005         * @return 返回首页页面内容
006         * @throws Exception
007         */
008        byte[] homepage() throws Exception;
009}