Home Reference Source

lib/Endpoints/StaticEndpoints/StaticSuperclass.js

import Endpoint from 'Endpoint'

class StaticSuperclass extends Endpoint {
    constructor() {
        super()

        this.serviceName = 'static-data'
    }
}

export default StaticSuperclass