aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/aoHost.ts
blob: 6cad62ad751b3bfed0fef4d5cfcca8b256f8e80f (plain)
1
2
3
4
5
6
7
import queryParser from '../utils/queryParser'

const { asset } = queryParser();
export let AO_HOST = asset;
export const setAOhost = (val: string) => {
    AO_HOST = val;
}