kingoftime-cli/src/commands/checkin.ts

17 lines
436 B
TypeScript

import {Command} from '@oclif/core'
import {tokenFlags} from '../token-flags'
import {checkin} from '../kingoftime'
export default class Checkout extends Command {
static description = 'Check in';
static examples = ['<%= config.bin %> <%= command.id %>'];
static flags = tokenFlags;
public async run(): Promise<void> {
const {flags} = await this.parse(Checkout)
await checkin(flags.token, flags['user-token'])
}
}