mirror of
https://github.com/maxboeck/webring
synced 2024-11-29 06:30:35 +00:00
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
import { redirect, getRandom } from './common/utils'
|
|
|
|
exports.handler = function(event, context, callback) {
|
|
const { referer } = event.headers
|
|
const site = getRandom(referer)
|
|
|
|
callback(null, redirect(site))
|
|
}
|