mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
20 lines
447 B
Swift
20 lines
447 B
Swift
//
|
|
// DatabaseWindowController.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 2/2/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class DatabaseWindowController: NSWindowController {
|
|
|
|
override func windowDidLoad() {
|
|
super.windowDidLoad()
|
|
|
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
|
}
|
|
|
|
}
|