Update the auth imports.

This commit is contained in:
joshaber 2016-05-27 11:37:28 -04:00
parent 38715c1728
commit 9416ce436f
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import {ipcRenderer} from 'electron'
import ThingList from './thing-list'
import Info from './info'
import {getToken} from './main-process/auth'
import {getToken} from './auth'
const Octokat = require('octokat')

View file

@ -3,7 +3,7 @@ import {app, ipcMain, Menu} from 'electron'
import AppWindow from './app-window'
import Stats from './stats'
import {requestToken, authenticate, setToken} from './auth'
import {requestToken, authenticate, setToken} from '../auth'
import {buildDefaultMenu} from './menu'
const stats = new Stats()