mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 04:53:28 +02:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
var express = require('express')
|
|
|
|
var pathutil = require('../util/pathutil')
|
|
|
|
module.exports = function(options) {
|
|
return express.static(
|
|
pathutil.root('node_modules/stf-devices-db/data/small'))
|
|
}
|